wxWidgets/make-deb

15 lines
201 B
Plaintext
Raw Normal View History

#!/bin/sh
set -e
TEMPDIR=temp-debian
echo "creating Debian source tree"
rm -rf ${TEMPDIR}
mkdir ${TEMPDIR}
cd ${TEMPDIR} && ../configure && make debian-dist
cd .. && rm -r ${TEMPDIR}
echo "done."