X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=install%2F5.005%2FNet-Whois-Raw%2FMakefile.PL;fp=install%2F5.005%2FNet-Whois-Raw%2FMakefile.PL;h=abd0ca3e9181d44b4c0e14e16d1872122164267f;hp=0000000000000000000000000000000000000000;hb=35effa1bf4ac902547615c816960bbc8db8e7256;hpb=de16528011da925274ae502e928c7878bbd7fefa diff --git a/install/5.005/Net-Whois-Raw/Makefile.PL b/install/5.005/Net-Whois-Raw/Makefile.PL new file mode 100755 index 000000000..abd0ca3e9 --- /dev/null +++ b/install/5.005/Net-Whois-Raw/Makefile.PL @@ -0,0 +1,24 @@ +#!/usr/bin/perl -w + +use ExtUtils::MakeMaker; +# See lib/ExtUtils/MakeMaker.pm for details of how to influence +# the contents of the Makefile that is written. + +sub MY::postamble { + package MY; + shift->SUPER::postamble . <<'MAKE'; +dist : README + +README : lib/Net/Whois/Raw.pm + @$(PERL) -MPod::Text -e "pod2text('$<');" > $@ + +MAKE +} + +WriteMakefile( + 'NAME' => 'Net::Whois::Raw', + 'VERSION_FROM' => 'lib/Net/Whois/Raw.pm', # finds $VERSION + 'PREREQ_PM' => {'IO::Socket' => 1.0}, + 'EXE_FILES' => ['pwhois'], + 'dist' => {'COMPRESS' => 'gzip --best --force'}, +);