Files
jellyfin-ffmpeg/builder/scripts.d/50-zimg.sh
T
2026-05-28 10:57:06 +08:00

51 lines
1.0 KiB
Bash
Executable File

#!/bin/bash
SCRIPT_REPO="https://github.com/sekrit-twc/zimg.git"
SCRIPT_COMMIT="5e8c32222569edf3a712f83d7cff80ad4dd9ab6e"
ffbuild_enabled() {
return 0
}
ffbuild_dockerbuild() {
git-mini-clone "$SCRIPT_REPO" "$SCRIPT_COMMIT" zimg
cd zimg
git submodule update --init --recursive --depth=1
./autogen.sh
local myconf=(
--prefix="$FFBUILD_PREFIX"
--disable-shared
--enable-static
--with-pic
)
if [[ $TARGET == win* || $TARGET == linux* ]]; then
myconf+=(
--host="$FFBUILD_TOOLCHAIN"
)
elif [[ $TARGET == mac* ]]; then
if [ "$MACOS_BUILDER_CPU_ARCH" = "arm64" ] && [ "$TARGET" = "mac64" ]; then
myconf+=(
--host="x86_64-apple-darwin"
)
fi
else
echo "Unknown target"
return -1
fi
./configure "${myconf[@]}"
make -j$(nproc)
make install
}
ffbuild_configure() {
echo --enable-libzimg
}
ffbuild_unconfigure() {
echo --disable-libzimg
}