mirror of
https://github.com/BtbN/FFmpeg-Builds.git
synced 2025-05-03 08:04:31 +02:00
24 lines
422 B
Bash
Executable File
24 lines
422 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SCRIPT_REPO="https://github.com/GPUOpen-LibrariesAndSDKs/AMF.git"
|
|
SCRIPT_COMMIT="2f326350e849894a929296854f5290e66197c97c"
|
|
|
|
ffbuild_enabled() {
|
|
return 0
|
|
}
|
|
|
|
ffbuild_dockerbuild() {
|
|
cd "$FFBUILD_DLDIR/$SELF"
|
|
|
|
mkdir -p "$FFBUILD_PREFIX"/include
|
|
mv amf/public/include "$FFBUILD_PREFIX"/include/AMF
|
|
}
|
|
|
|
ffbuild_configure() {
|
|
echo --enable-amf
|
|
}
|
|
|
|
ffbuild_unconfigure() {
|
|
echo --disable-amf
|
|
}
|