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