scrcpy/app/deps
Muvaffak Onus c0a49e2e40 Use generic command for SHA-256
The command sha256sum does not exist on macOS, but `shasum -a256` works
both on Linux and macOS.

Co-authored-by: Romain Vimont <rom@rom1v.com>
2024-11-23 16:47:41 +01:00
..
.gitignore Build dependencies from sources 2024-03-02 22:52:54 +01:00
adb_linux.sh Add script to release a Linux static binary 2024-11-23 16:35:57 +01:00
adb_windows.sh Make adb dependency script Windows-specific 2024-11-22 22:23:37 +01:00
common Use generic command for SHA-256 2024-11-23 16:47:41 +01:00
ffmpeg.sh Add script to release a Linux static binary 2024-11-23 16:35:57 +01:00
libusb.sh Add cross/native and shared/static for deps 2024-11-22 22:23:37 +01:00
README Build dependencies from sources 2024-03-02 22:52:54 +01:00
sdl.sh Add script to release a Linux static binary 2024-11-23 16:35:57 +01:00

This directory (app/deps/) contains:

*.sh          : shell scripts to download and build dependencies

patches/      : patches to fix dependencies (used by scripts)

work/sources/ : downloaded tarballs and extracted folders
                    ffmpeg-6.1.1.tar.xz
                    ffmpeg-6.1.1/
                    libusb-1.0.27.tar.gz
                    libusb-1.0.27/
                    ...
work/build/   : build dirs for each dependency/version/architecture
                    ffmpeg-6.1.1/win32/
                    ffmpeg-6.1.1/win64/
                    libusb-1.0.27/win32/
                    libusb-1.0.27/win64/
                    ...
work/install/ : install dirs for each architexture
                    win32/bin/
                    win32/include/
                    win32/lib/
                    win32/share/
                    win64/bin/
                    win64/include/
                    win64/lib/
                    win64/share/