import Net::Whois::Raw into install/5.005 directory *sigh*
[freeside.git] / install / 5.005 / Net-Whois-Raw / Makefile.PL
1 #!/usr/bin/perl -w
2
3 use ExtUtils::MakeMaker;
4 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
5 # the contents of the Makefile that is written.
6
7 sub MY::postamble {
8         package MY;
9         shift->SUPER::postamble . <<'MAKE';
10 dist : README
11
12 README : lib/Net/Whois/Raw.pm
13         @$(PERL) -MPod::Text -e "pod2text('$<');" > $@
14
15 MAKE
16 }
17
18 WriteMakefile(
19     'NAME'      => 'Net::Whois::Raw',
20     'VERSION_FROM' => 'lib/Net/Whois/Raw.pm', # finds $VERSION
21     'PREREQ_PM' => {'IO::Socket' => 1.0},
22     'EXE_FILES' => ['pwhois'],
23     'dist' => {'COMPRESS' => 'gzip --best --force'},
24 );