libfreefare/.travis-ci-build

23 lines
436 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 CFLAGS="-I$HOME/.local/include" LDFLAGS="-L$HOME/.local/lib"
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