Initial Import. Ver 0.1

This commit is contained in:
Max Baker
2002-12-30 21:26:48 +00:00
parent b347ba2525
commit eff4335298
3 changed files with 57 additions and 0 deletions

18
Makefile.PL Normal file
View File

@@ -0,0 +1,18 @@
# SNMP::Info - Makefile.PL
use ExtUtils::MakeMaker;
WriteMakefile(
'NAME' => 'SNMP::Info',
'VERSION_FROM' => 'Info.pm',
'PREREQ_PM' => {'SNMP' => '4'},
($] >= 5.005 ?
(ABSTRACT_FROM => 'Info.pm',
AUTHOR => 'Max Baker <max@warped.org>')
: ()
),
'PMLIBDIRS' => ['Info','$(BASEEXT)'],
);
sub MY::postamble { "
.PHONY: readme
readme:
pod2text -l Info.pm > README" }