mirror of
https://github.com/BtbN/FFmpeg-Builds.git
synced 2025-04-29 14:14:35 +02:00
27 lines
466 B
Bash
Executable File
27 lines
466 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SCRIPT_REPO="https://github.com/GPUOpen-LibrariesAndSDKs/AMF.git"
|
|
SCRIPT_COMMIT="16f7d73e0b45c473e903e46981ed0b91efc4c091"
|
|
|
|
ffbuild_enabled() {
|
|
return 0
|
|
}
|
|
|
|
ffbuild_dockerdl() {
|
|
default_dl .
|
|
echo "rm -rf .git Thirdparty"
|
|
}
|
|
|
|
ffbuild_dockerbuild() {
|
|
mkdir -p "$FFBUILD_PREFIX"/include
|
|
mv amf/public/include "$FFBUILD_PREFIX"/include/AMF
|
|
}
|
|
|
|
ffbuild_configure() {
|
|
echo --enable-amf
|
|
}
|
|
|
|
ffbuild_unconfigure() {
|
|
echo --disable-amf
|
|
}
|