FFmpeg-Builds/scripts.d/50-aribb24/25-libpng.sh
BtbN 61debb00e5 Switch to a more direct Dockerfile.dl generation
Otherwise the entire build cache effectively invalidates the moment one
script changes..
2023-06-18 21:25:52 +02:00

36 lines
680 B
Bash
Executable file

#!/bin/bash
SCRIPT_REPO="https://github.com/glennrp/libpng.git"
SCRIPT_COMMIT="e519af8b49f52c4ac400f50f23b48ebe36a5f4df"
ffbuild_enabled() {
return 0
}
ffbuild_dockerbuild() {
cd "$FFBUILD_DLDIR/$SELF"
autoreconf -i
local myconf=(
--prefix="$FFBUILD_PREFIX"
--disable-shared
--enable-static
--with-pic
)
if [[ $TARGET == win* || $TARGET == linux* ]]; then
myconf+=(
--host="$FFBUILD_TOOLCHAIN"
)
else
echo "Unknown target"
return -1
fi
export CPPFLAGS="$CPPFLAGS -I$FFBUILD_PREFIX/include"
./configure "${myconf[@]}"
make -j$(nproc)
make install
}