e4c4c1c697
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6092 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
15 lines
201 B
Bash
Executable File
15 lines
201 B
Bash
Executable File
#!/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."
|
|
|