FFmpeg-Builds/scripts.d/50-schannel.sh
BtbN 61debb00e5 Switch to a more direct Dockerfile.dl generation
Otherwise the entire build cache effectively invalidates the moment one
script changes..
2023-06-18 21:25:52 +02:00

32 lines
345 B
Bash
Executable file

#!/bin/bash
SCRIPT_SKIP="1"
ffbuild_enabled() {
[[ $TARGET == win* ]]
}
ffbuild_dockerdl() {
return 0
}
ffbuild_dockerstage() {
return 0
}
ffbuild_dockerbuild() {
return 0
}
ffbuild_dockerlayer_dl() {
return 0
}
ffbuild_configure() {
echo --enable-schannel
}
ffbuild_unconfigure() {
echo --disable-schannel
}