FFmpeg-Builds/scripts.d/50-avisynth.sh

31 lines
712 B
Bash
Raw Permalink Normal View History

2020-09-05 14:59:09 +00:00
#!/bin/bash
2022-07-12 15:54:12 +00:00
SCRIPT_REPO="https://github.com/AviSynth/AviSynthPlus.git"
2023-07-20 13:29:46 +00:00
SCRIPT_COMMIT="fc5b9bc41fd47001b7da39ea777d29c0ede2a2a7"
2020-09-05 14:59:09 +00:00
ffbuild_enabled() {
2021-06-20 19:59:48 +00:00
[[ $VARIANT == lgpl* ]] && return -1
2020-09-05 14:59:09 +00:00
return 0
}
ffbuild_dockerbuild() {
cd "$FFBUILD_DLDIR/$SELF"
2020-09-05 14:59:09 +00:00
2023-07-20 13:54:19 +00:00
# their version check is insistant on a tag to exist, so make one
git tag -a ffbuild -m "FFbuild Version"
2020-09-05 14:59:09 +00:00
mkdir build && cd build
2021-04-04 21:20:31 +00:00
cmake -DCMAKE_TOOLCHAIN_FILE="$FFBUILD_CMAKE_TOOLCHAIN" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="$FFBUILD_PREFIX" -DHEADERS_ONLY=ON ..
make -j$(nproc)
make VersionGen install
2020-09-05 14:59:09 +00:00
}
ffbuild_configure() {
echo --enable-avisynth
}
ffbuild_unconfigure() {
echo --disable-avisynth
}