libfreefare/.travis-ci-build

23 lines
453 B
Text
Raw Normal View History

2017-06-26 11:09:17 +02:00
#!/bin/sh
cd $1
2017-06-26 11:09:17 +02:00
if [ "$BLD" = autotools ]; then
2017-06-26 11:25:37 +02:00
set -ex
autoreconf -vis
mkdir build-autotools
cd build-autotools
../configure --prefix=$HOME/.local LIBNFC_CFLAGS="-I$HOME/.local/include" LIBNFC_LIBS="-L$HOME/.local/lib -lnfc"
make
make install
elif [ "$BLD" = cmake ]; then
2017-06-26 11:25:37 +02:00
set -ex
mkdir build-cmake
cd build-cmake
cmake -DCMAKE_INSTALL_PREFIX=$HOME/.local ..
make
make install
else
echo "Unsupported build system: '$BLD'" >&2
exit 1
fi