parent
71b37989a5
commit
e176c33861
5 changed files with 298 additions and 0 deletions
37
scripts.d/50-aribb24/25-libpng.sh
Executable file
37
scripts.d/50-aribb24/25-libpng.sh
Executable file
|
@ -0,0 +1,37 @@
|
|||
#!/bin/bash
|
||||
|
||||
LIBPNG_REPO="https://github.com/glennrp/libpng.git"
|
||||
LIBPNG_COMMIT="a37d4836519517bdce6cb9d956092321eca3e73b"
|
||||
|
||||
ffbuild_enabled() {
|
||||
return 0
|
||||
}
|
||||
|
||||
ffbuild_dockerbuild() {
|
||||
git-mini-clone "$LIBPNG_REPO" "$LIBPNG_COMMIT" libpng
|
||||
cd libpng
|
||||
|
||||
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
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue