]> git.donarmstrong.com Git - debhelper.git/blobdiff - dh_auto_build
dh_auto_*: Also support packages using Module::Build.
[debhelper.git] / dh_auto_build
index 2d636ea3df179c8ed19ed08a72e72322bd78f6cb..d35dfc636e53b862337befbfc1b462bfc99bcd30 100755 (executable)
@@ -18,7 +18,7 @@ B<dh_auto_build> [S<I<debhelper options>>] [S<B<--> I<params>>]
 dh_auto_build is a debhelper program that tries to automatically
 build a package. If a Makefile is found, this is done by running make (or
 MAKE, if the environment variable is set).
-If there's a setup.py, it is run to build the package.
+If there's a setup.py, or Build.PL, it is run to build the package.
 
 This is intended to work for about 90% of packages. If it doesn't work,
 you're encoruaged to skip using dh_auto_build at all, and just run the
@@ -43,7 +43,10 @@ if (-e "Makefile" || -e "makefile" || -e "GNUmakefile") {
        doit(exists $ENV{MAKE} ? $ENV{MAKE} : "make", @{$dh{U_PARAMS}});
 }
 elsif (-e "setup.py") {
-       doit("python setup.py", "build", @{$dh{U_PARAMS}});
+       doit("python", "setup.py", "build", @{$dh{U_PARAMS}});
+}
+elsif (-e "Build.PL" && -e "Build") {
+       doit("perl", "Build", @{$dh{U_PARAMS}});
 }
 
 =head1 SEE ALSO