mirror of
https://github.com/BtbN/FFmpeg-Builds.git
synced 2025-04-30 14:44:41 +02:00
22 lines
248 B
Bash
Executable File
22 lines
248 B
Bash
Executable File
#!/bin/bash
|
|
|
|
ffbuild_enabled() {
|
|
[[ $TARGET == win* ]]
|
|
}
|
|
|
|
ffbuild_dockerstage() {
|
|
return 0
|
|
}
|
|
|
|
ffbuild_dockerbuild() {
|
|
return 0
|
|
}
|
|
|
|
ffbuild_configure() {
|
|
echo --enable-schannel
|
|
}
|
|
|
|
ffbuild_unconfigure() {
|
|
echo --disable-schannel
|
|
}
|