]> git.donarmstrong.com Git - debhelper.git/blobdiff - dh_auto_build
New short switches for buildsystem stuff, drop envvars
[debhelper.git] / dh_auto_build
index 2d636ea3df179c8ed19ed08a72e72322bd78f6cb..56b9b5f078dddb4966b4831e81a5a2c2654b9dd8 100755 (executable)
@@ -7,7 +7,7 @@ dh_auto_build - automatically builds a package
 =cut
 
 use strict;
-use Debian::Debhelper::Dh_Lib;
+use Debian::Debhelper::Dh_Buildsystems;
 
 =head1 SYNOPSIS
 
@@ -18,10 +18,10 @@ 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
+you're encouraged to skip using dh_auto_build at all, and just run the
 build process manually.
 
 =head1 OPTIONS
@@ -30,21 +30,15 @@ build process manually.
 
 =item B<--> I<params>
 
-Pass "params" to the program that is run. These can be used to suppliment
+Pass "params" to the program that is run. These can be used to supplement
 or override any standard parameters that dh_auto_build passes.
 
 =back
 
 =cut
 
-init();
-
-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}});
-}
+buildsystems_init();
+buildsystems_do();
 
 =head1 SEE ALSO