lnav/release/vagrant-static/build.sh
Timothy Stack 4ecc88292a [release] build packages with fpm
Add a separate vagrant vm to run fpm since the centos 5
one is too old and then use it to produce deb and rpm
files.
2016-02-28 11:40:26 -08:00

54 lines
1.1 KiB
Bash
Executable File

#! /usr/bin/env bash
FAKE_ROOT=/home/vagrant/fake.root
SRC_VERSION=$1
mkdir -p ~/github
cd ~/github
if ! test -d lnav; then
git clone git://github.com/tstack/lnav.git
fi
cd ~/github/lnav
git pull
if test -n "$SRC_VERSION"; then
git checkout $SRC_VERSION
fi
saved_PATH=${PATH}
export PATH=${FAKE_ROOT}/bin:${PATH}
saved_LD_LIBRARY_PATH=${LD_LIBRARY_PATH}
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${FAKE_ROOT}/lib
./autogen.sh
export PATH=${saved_PATH}
export LD_LIBRARY_PATH=${saved_LD_LIBRARY_PATH}
rm -rf ~/github/lbuild
mkdir -p ~/github/lbuild
cd ~/github/lbuild
OS=$(uname -s)
if test x"${OS}" != x"FreeBSD"; then
../lnav/configure \
LDFLAGS="-L${FAKE_ROOT}/lib" \
CC="gcc44" \
CXX="g++44" \
CPPFLAGS="-I${FAKE_ROOT}/include" \
PATH="${FAKE_ROOT}/bin:${PATH}"
else
../lnav/configure \
LDFLAGS="-L${FAKE_ROOT}/lib" \
CPPFLAGS="-I${FAKE_ROOT}/include" \
PATH="${FAKE_ROOT}/bin:${PATH}"
fi
make -j2 && strip -o /vagrant/lnav src/lnav
mkdir instdir
make install-strip DESTDIR=$PWD/instdir
(cd instdir/ && zip -r /vagrant/lnav-linux.zip .)