Hash :
86484628
Author :
Date :
2012-09-15T20:50:01
a new deb version with the tests
#!/bin/sh
# build a debian sourcepackage and upload it to the launchpad ppa
for DISTRIBUTION in precise # oneiric natty maverick
do
FTGLVERSIONSTR=2.1.3~rc5-8polyextr~${DISTRIBUTION}
sed -i -e "s/maverick/${DISTRIBUTION}/g" -e "s/natty/${DISTRIBUTION}/g" -e "s/oneiric/${DISTRIBUTION}/g" -e "s/precise/${DISTRIBUTION}/g" debian/changelog
# rm -rf debian/source
dpkg-buildpackage -rfakeroot -k${GPGKEY} -S
dput ppa:richi-paraeasy/ppa ../ftgl_${FTGLVERSIONSTR}_source.changes
done