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

18 lines
No EOL
364 B
Bash
Executable file

#!/bin/bash
git clone https://code.teampandory.com/thirdparty/evdevshift
set -e
cd evdevshift
export CFLAGS="-I$PREFIX/include -O3"
export CXXFLAGS="-I$PREFIX/include -O3"
export LDFLAGS="-L$PREFIX/lib -liconv"
libtoolize --force
aclocal
autoheader
automake --force-missing --add-missing
autoconf
./configure --host="$xHOST" --prefix="$PREFIX"
make
make install