scrcpy/app/deps
Romain Vimont f2018e026c Remove broken macOS flags
Due to a typo (a space was missing before the second '-L'), the
resulting LDFLAGS value was broken:

    "-L/opt/homebrew/opt/zlib/lib-L/opt/homebrew/opt/libiconv/lib"

This proves that the flag was useless. Remove it.

Refs #5517 comment <https://github.com/Genymobile/scrcpy/pull/5517#issuecomment-2495522201>
PR #5644 <https://github.com/Genymobile/scrcpy/pull/5644>
2024-12-09 19:07:03 +01:00
..
.gitignore Build dependencies from sources 2024-03-02 22:52:54 +01:00
adb_linux.sh Add script to release Linux static binary 2024-11-24 15:41:13 +01:00
adb_macos.sh Add script to release macOS static binary 2024-11-24 15:46:23 +01:00
adb_windows.sh Make the ADB dependency script Windows-specific 2024-11-24 15:41:13 +01:00
common Use generic command for SHA-256 2024-11-24 15:41:13 +01:00
ffmpeg.sh Remove broken macOS flags 2024-12-09 19:07:03 +01:00
libusb.sh Add support for build and link types for deps 2024-11-24 15:41:13 +01:00
README Build dependencies from sources 2024-03-02 22:52:54 +01:00
sdl.sh Upgrade SDL (2.30.10) 2024-12-08 18:17:07 +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/