This commit is contained in:
BtbN 2020-09-05 19:38:50 +02:00
parent 7c69713dab
commit b4878c4e1f
1 changed files with 51 additions and 0 deletions

51
scripts.d/50-zimg.sh Executable file
View File

@ -0,0 +1,51 @@
#!/bin/bash
ZIMG_REPO="https://github.com/sekrit-twc/zimg.git"
ZIMG_COMMIT="e17ee6cf72509c32c15067b32615849e69486367"
ffbuild_enabled() {
return 0
}
ffbuild_dockerstage() {
to_df "ADD $SELF /stage.sh"
to_df "RUN run_stage"
}
ffbuild_dockerbuild() {
git clone "$ZIMG_REPO" zimg || return -1
cd zimg
git checkout "$ZIMG_COMMIT" || return -1
./autogen.sh || return -1
local myconf=(
--prefix="$FFBUILD_PREFIX"
--disable-shared
--enable-static
)
if [[ $TARGET == win* ]]; then
myconf+=(
--host="$FFBUILD_TOOLCHAIN"
)
else
echo "Unknown target"
return -1
fi
./configure "${myconf[@]}" || return -1
make -j$(nproc) || return -1
make install || return -1
cd ..
rm -rf zimg
}
ffbuild_configure() {
echo --enable-libzimg
}
ffbuild_unconfigure() {
echo --disable-libzimg
}