18 lines
364 B
Bash
18 lines
364 B
Bash
|
#!/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
|