summaryrefslogtreecommitdiff
path: root/build.sh
blob: c3dfc45c5e5482f5761f14a2c4d36a9f22f4538c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

dir=`pwd`

autoreconf -i
./configure --prefix=$dir/run \
--datadir=$dir/run/share/games \
--bindir=$dir/run/bin \
--mandir=$dir/run/share/man $*

cd po
make update-gmo
cd ..
make
mkdir run
make install