mirror of
https://github.com/BtbN/FFmpeg-Builds.git
synced 2025-04-29 14:14:35 +02:00
15 lines
310 B
Bash
Executable File
15 lines
310 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SCRIPT_REPO="https://github.com/meganz/mingw-std-threads.git"
|
|
SCRIPT_COMMIT="c931bac289dd431f1dd30fc4a5d1a7be36668073"
|
|
|
|
ffbuild_enabled() {
|
|
[[ $TARGET == win* ]] || return -1
|
|
return 0
|
|
}
|
|
|
|
ffbuild_dockerbuild() {
|
|
mkdir -p "$FFBUILD_PREFIX"/include
|
|
cp *.h "$FFBUILD_PREFIX"/include
|
|
}
|