summaryrefslogblamecommitdiff
path: root/nightly/buildlinux.sh
blob: ebc07dd87cee4e01acb01badb2af9eaf768b946e (plain) (tree)
1
2
3
4
5
6
7
8
9








                            
                                        











                               
#!/bin/bash

cd ..

DIR=`pwd`
DSTDIR=packaging/build/linux

autoreconf -i
#make clean
./configure --datadir=. localedir=locale
make

if [ -e src/manaplus ];
then
    strip src/manaplus
    rm -rf $DSTDIR
    mkdir -p $DSTDIR
    cp -r data $DSTDIR
    mkdir -p $DSTDIR/bin
    cp src/manaplus $DSTDIR/bin
    cp nightly/runme.sh $DSTDIR
fi