git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/tags/WX_2_2_9@13364 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
27 lines
601 B
Bash
Executable File
27 lines
601 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."
|
|
echo " "
|
|
echo " ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
|
|
echo " If this is a new release version"
|
|
echo " remember to update the changelog"
|
|
echo " before building the package."
|
|
echo " "
|
|
echo " Also remember to create debian/control"
|
|
echo " ( it needs to be in the source package"
|
|
echo " for NMU build deps to work )"
|
|
echo " "
|
|
echo " ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
|
|
echo " "
|
|
|