buildscripts/evdevshift.sh

18 lines
364 B
Bash
Raw Permalink Normal View History

2023-12-03 23:10:57 +01:00
#!/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