buildscripts/libplist.sh
2023-12-03 23:10:57 +01:00

14 lines
No EOL
356 B
Bash
Executable file

#!/bin/bash
git clone https://github.com/libimobiledevice/libplist
set -e
cd libplist
git reset HEAD --hard
git checkout bfc97788f081584ced9cd35d85b69b3fec6b907c
export CFLAGS="-I$PREFIX/include -O3"
export CPPFLAGS="-I$PREFIX/include -O3"
export LDFLAGS="-L$PREFIX/lib"
./autogen.sh --host="$xHOST" --prefix="$PREFIX" --without-cython
make
make install