mirror of
https://github.com/BtbN/FFmpeg-Builds.git
synced 2025-05-01 15:14:30 +02:00

I was not able to get the driver to work at all. It just crashes a lot, but since it has no averse side-effects (hopefully), let's just enable it by default.
19 lines
269 B
Bash
Executable File
19 lines
269 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SCRIPT_SKIP="1"
|
|
|
|
ffbuild_enabled() {
|
|
return 0
|
|
}
|
|
|
|
ffbuild_dockerdl() {
|
|
return 0
|
|
}
|
|
|
|
ffbuild_dockerbuild() {
|
|
if [[ $TARGET == linux* ]]; then
|
|
rm "$FFBUILD_PREFIX"/lib/lib*.so* || true
|
|
rm "$FFBUILD_PREFIX"/lib/*.la || true
|
|
fi
|
|
}
|