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
|
use 5.005;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
# RIPE NCC common configuration
my %PARAM = (
'INSTALLDIRS' => 'vendor',
'INSTALLSCRIPT' => '$(INSTALLVENDORBIN)', # Hack for Perl prior 5.8.1
'dist' => {
'COMPRESS' => 'gzip',
'SUFFIX' => '.gz',
'CI' => 'cvs ci',
'RCS_LABEL' => 'cvs tag -c -F $(NAME_SYM)-$(VERSION_SYM)',
},
);
if($] >= 5.005) {
$PARAM{AUTHOR} = 'Timur Bakeyev <timur@ripe.net>';
};
WriteMakefile(
'NAME' => 'NCC::CountryCode',
'VERSION_FROM' => 'CountryCode.pm', # finds $VERSION
%PARAM
);
|