blob: ebc07dd87cee4e01acb01badb2af9eaf768b946e (
plain) (
tree)
|
|
#!/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
|