summaryrefslogtreecommitdiff
path: root/build.sh
blob: efa6ceba4089187996b125d3f24ac8d203323fdc (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