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

14 lines
No EOL
382 B
Bash
Executable file

#!/bin/bash
git clone https://code.teampandory.com/thirdparty/libxi/
set -e
cd libxi
git checkout libXi-1.8
export CFLAGS="-I$PREFIX/include -O3"
export CPPFLAGS="-I$PREFIX/include -O3"
export LDFLAGS="-L$PREFIX/lib"
./autogen.sh --prefix="$PREFIX" --host="$xHOST" --with-xmlto=no --with-fop=no --with-xsltproc=no --with-asciidoc=no --enable-malloc0returnsnull
make
make install