0d71dcb1988a5308d0288c07a0aa88f1d58a28bb
[perl-pqf.git] / Makefile.PL
1 # $Id: Makefile.PL,v 1.4 2007-11-19 13:42:58 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     ($] >= 5.005 ?    ## Add these new keywords supported since 5.005
13       (AUTHOR     => 'Mike Taylor <mike@indexdata.com>') : ()),
14 );
15
16
17 sub MY::postamble { "debian: makemakerdflt
18         dpkg-buildpackage -rfakeroot -d
19         rm -rf debian-output
20         mkdir debian-output
21         mv ../libnet-z3950-pqf-perl* debian-output
22 ";
23 }
24