1234567891011121314151617181920212223242526272829303132333435 |
- #!/bin/bash
- SCRIPT_REPO="https://github.com/glennrp/libpng.git"
- SCRIPT_COMMIT="812c34c13c27a963073e546c720f5a7b88b1ed00"
- ffbuild_enabled() {
- return 0
- }
- ffbuild_dockerbuild() {
- 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
- }
|