]> git.donarmstrong.com Git - debhelper.git/blob - dh_auto_configure
Merge branch 'master' into buildsystems
[debhelper.git] / dh_auto_configure
1 #!/usr/bin/perl -w
2
3 =head1 NAME
4
5 dh_auto_configure - automatically configure a package prior to building
6
7 =cut
8
9 use strict;
10 use Debian::Debhelper::Dh_Buildsystems;
11
12 =head1 SYNOPSIS
13
14 B<dh_auto_configure> [S<I<debhelper options>>] [S<B<--> I<params>>]
15
16 =head1 DESCRIPTION
17
18 dh_auto_configure is a debhelper program that tries to automatically
19 configure a package prior to building. It looks for and runs a ./configure
20 script, Makefile.PL, Build.PL, or cmake. A standard set of parameters is
21 determined and passed to the program that is run. If no program to run is
22 found, dh_auto_configure will exit without doing anything.
23
24 This is intended to work for about 90% of packages. If it doesn't work,
25 you're encouraged to skip using dh_auto_configure at all, and just run
26 ./configure or its equivalent manually.
27
28 =head1 OPTIONS
29
30 =over 4
31
32 =item B<--> I<params>
33
34 Pass "params" to the program that is run. These can be used to supplement
35 or override the standard parameters that dh_auto_configure passes.
36
37 =back
38
39 =cut
40
41 buildsystems_init();
42 buildsystems_do();
43
44 =head1 SEE ALSO
45
46 L<debhelper(7)>
47
48 This program is a part of debhelper.
49
50 =head1 AUTHOR
51
52 Joey Hess <joeyh@debian.org>
53
54 =cut