Ignore libnet-z3950-pqf-perl.debhelper.log
[perl-pqf.git] / Makefile.PL
1 # $Id: Makefile.PL,v 1.6 2007-11-27 22:19:51 mike Exp $
2
3 use 5.006;
4 use ExtUtils::MakeMaker;
5
6 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
7 # the contents of the Makefile that is written.
8 WriteMakefile(
9     'NAME'              => 'Net::Z3950::PQF',
10     'VERSION_FROM'      => 'lib/Net/Z3950/PQF.pm', # finds $VERSION
11     'PREREQ_PM'         => {}, # e.g., Module::Name => 1.1
12     clean => { FILES => "build-stamp install-stamp debian/files " .
13                         "debian/libnet-z3950-pqf-perl " .
14                         "debian/libnet-z3950-pqf-perl.substvars" },
15     ($] >= 5.005 ?    ## Add these new keywords supported since 5.005
16       (AUTHOR     => 'Mike Taylor <mike@indexdata.com>') : ()),
17 );
18
19
20 sub MY::postamble { "debian: makemakerdflt
21         dpkg-buildpackage -rfakeroot -d
22         rm -rf debian/output
23         mkdir debian/output
24         mv ../libnet-z3950-pqf-perl* debian/output
25 ";
26 }
27