]> git.saurik.com Git - wxWidgets.git/blame_incremental - make-deb
wx-config2.6
[wxWidgets.git] / make-deb
... / ...
CommitLineData
1#!/bin/sh
2set -e
3
4TEMPDIR=temp-debian
5
6echo "creating Debian source tree ..."
7
8rm -rf ${TEMPDIR}
9mkdir ${TEMPDIR}
10cd ${TEMPDIR} && ../configure --with-flavour="$1" && make debian-dist
11cd .. && rm -r ${TEMPDIR}
12
13echo "done."
14echo " "
15echo " ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
16echo " If this is a new release version"
17echo " remember to update the changelog"
18echo " before building the package."
19echo " "
20if [ -n "$1" ]; then
21 echo " You will need a changelog entry"
22 echo " for: wxwidgets2.5-$1"
23fi
24echo " ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
25echo " "
26
27