1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
# $Id: Makefile.PL 2336 2007-10-28 01:37:07Z comdog $
use ExtUtils::MakeMaker;
eval "use Test::Manifest 1.14";
WriteMakefile(
'NAME' => 'Net::MAC::Vendor',
'ABSTRACT' => 'look up the network interface vendor by MAC',
'VERSION_FROM' => 'lib/Vendor.pm',
'LICENSE' => 'perl',
'AUTHOR' => 'brian d foy <bdfoy@cpan.org>',
'PREREQ_PM' => {
'Test::More' => '0',
'LWP::Simple' => '0',
},
'PM' => {
'lib/Vendor.pm' => '$(INST_LIBDIR)/Vendor.pm',
},
'MAN3PODS' => {
'lib/Vendor.pm' => '$(INST_MAN3DIR)/Net::MAC::Vendor.3',
},
clean => { FILES => q|Net-MAC-Vendor-* Makefile.old MANIFEST.bak| },
);
|