mirror of
https://github.com/tstack/lnav
synced 2024-11-01 21:40:34 +00:00
28 lines
462 B
Bash
Executable File
28 lines
462 B
Bash
Executable File
#! /bin/bash
|
|
|
|
FAKE_ROOT=/home/vagrant/fake.root
|
|
|
|
mkdir -p ~/github
|
|
|
|
cd ~/github
|
|
if ! test -d lnav; then
|
|
git clone git://github.com/tstack/lnav.git
|
|
fi
|
|
|
|
cd ~/github/lnav
|
|
git pull
|
|
|
|
rm -rf ~/github/lbuild
|
|
mkdir -p ~/github/lbuild
|
|
|
|
cd ~/github/lbuild
|
|
|
|
../lnav/configure \
|
|
CC="gcc44" \
|
|
CXX="g++44" \
|
|
LDFLAGS="-L${FAKE_ROOT}/lib" \
|
|
PATH="${FAKE_ROOT}/bin:${PATH}" \
|
|
CPPFLAGS="-I${FAKE_ROOT}/include"
|
|
|
|
make -j2 && strip -o /vagrant/lnav src/lnav
|