r1960: *** empty log message ***
[uffi.git] / make-debian.sh
1 #!/bin/bash
2
3 if [ -z ${opt_dpkg_buildpackage} ]; then
4   export CVSROOT=`cat CVS/Root`
5 fi
6
7 echo "Building Debian files"
8 cvs-buildpackage -rfakeroot -kkevin@rosenberg.net -H${TOPDIR}/cvsbp-prepare -tC -i.pdf ${DEBPKG}
9
10 if [ ! -z ${opt_lintian} ]; then
11   pushd ${PACKAGE_DIR} > /dev/null
12   lintian ${DEBPKG}_${DEBVERSION}_*.changes
13   popd > /dev/null
14 fi
15
16 exit 0