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

44 lines
756 B
Bash
Raw Normal View History

2020-09-05 17:38:50 +00:00
#!/bin/bash
ZIMG_REPO="https://github.com/sekrit-twc/zimg.git"
2021-09-22 13:27:59 +00:00
ZIMG_COMMIT="42b0d409e14e1b765e9ac6abdd9c14fc85d4ee81"
2020-09-05 17:38:50 +00:00
ffbuild_enabled() {
return 0
}
ffbuild_dockerbuild() {
2020-09-05 20:34:23 +00:00
git-mini-clone "$ZIMG_REPO" "$ZIMG_COMMIT" zimg
2020-09-05 17:38:50 +00:00
cd zimg
2021-04-04 21:20:31 +00:00
./autogen.sh
2020-09-05 17:38:50 +00:00
local myconf=(
--prefix="$FFBUILD_PREFIX"
--disable-shared
--enable-static
--with-pic
2020-09-05 17:38:50 +00:00
)
if [[ $TARGET == win* || $TARGET == linux* ]]; then
2020-09-05 17:38:50 +00:00
myconf+=(
--host="$FFBUILD_TOOLCHAIN"
)
else
2020-09-05 17:38:50 +00:00
echo "Unknown target"
return -1
fi
2021-04-04 21:20:31 +00:00
./configure "${myconf[@]}"
make -j$(nproc)
make install
2020-09-05 17:38:50 +00:00
}
ffbuild_configure() {
echo --enable-libzimg
}
ffbuild_unconfigure() {
echo --disable-libzimg
}