added files / made changes to enable building Debian releases from cvs

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6092 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Ron Lee
2000-02-16 20:47:08 +00:00
parent b7fff980e7
commit e4c4c1c697
15 changed files with 315 additions and 0 deletions

14
make-deb Executable file
View File

@@ -0,0 +1,14 @@
#!/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."