mirror of
https://github.com/BtbN/FFmpeg-Builds.git
synced 2025-04-29 22:24:28 +02:00
19 lines
265 B
Bash
Executable File
19 lines
265 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SCRIPT_SKIP="1"
|
|
|
|
ffbuild_enabled() {
|
|
return 0
|
|
}
|
|
|
|
ffbuild_dockerdl() {
|
|
true
|
|
}
|
|
|
|
ffbuild_dockerbuild() {
|
|
if [[ $TARGET == linux* ]]; then
|
|
rm "$FFBUILD_PREFIX"/lib/lib*.so* || true
|
|
rm "$FFBUILD_PREFIX"/lib/*.la || true
|
|
fi
|
|
}
|