mirror of
https://github.com/BtbN/FFmpeg-Builds.git
synced 2025-05-06 01:24:29 +02:00
22 lines
391 B
Bash
Executable File
22 lines
391 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SCRIPT_REPO="https://github.com/GPUOpen-LibrariesAndSDKs/AMF.git"
|
|
SCRIPT_COMMIT="8787d3ef5d938425d094170c1b2fec87762683b6"
|
|
|
|
ffbuild_enabled() {
|
|
return 0
|
|
}
|
|
|
|
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
|
|
}
|