[go: up one dir, main page]

Menu

[b8d1a6]: / builddeb  Maximize  Restore  History

Download this file

25 lines (17 with data), 419 Bytes

#!/bin/sh

rm -rf debtmp
mkdir debtmp

python ./mscript.py configure

Version=`cat version`

python ./mscript.py dist
ln "build/roxterm-$Version.tar.bz2" "debtmp/roxterm_$Version.orig.tar.bz2"

cd debtmp
tar xf "roxterm_$Version.orig.tar.bz2"
cd "roxterm-$Version"

if [ "$EMAIL" != "h@realh.co.uk" ] ; then
    SIGNOPTS="-uc -us"
else
    SIGNOPTS=""
fi

echo "Building in directory " `pwd`
debuild -i -I $SIGNOPTS $@