mirror of
https://github.com/BtbN/FFmpeg-Builds.git
synced 2025-04-29 22:24:28 +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="e1da8a58d4f4c7a706e36b3ad3baf8a2ffbb7d0f"
|
|
|
|
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
|
|
}
|