#!/usr/bin/perl -w # # Build the .deb package, assuming all the files are set up. use Debian::Debhelper::Dh_Lib; init(); # Set the default destination directory. if (! defined $dh{DESTDIR}) { $dh{DESTDIR}='..'; } foreach $PACKAGE (@{$dh{DOPACKAGES}}) { $TMP=tmpdir($PACKAGE); doit("dpkg","--build",$TMP,$dh{DESTDIR},@{$dh{U_PARAMS}}); }