summaryrefslogtreecommitdiff
path: root/util/configure.sh
blob: de03c69f8a3f2af06c42db55569d1568d8453b5e (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash
for ltmain in $(find -name ltmain.sh); do
    patch -N "${ltmain}" "$(dirname "$0")/libtool.diff" || true
done

if [[ -z $PKG_CONF ]]; then
    PKG_CONF=./configure
fi

PKG_ROOT=/home/saurik/iphone/sysroot PKG_CONFIG="$(realpath ../../../util/pkg-config.sh) --define-variable=prefix=/home/saurik/iphone/sysroot/usr" PKG_CONFIG_PATH=/home/saurik/iphone/sysroot/usr/lib/pkgconfig $PKG_CONF --prefix=/usr --host=${PKG_TARG} --enable-static=no --enable-shared=yes "$@"