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 29 30 31 32 33
|
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'ExtUtils::F77',
ABSTRACT => 'a simple interface to F77 libs',
AUTHOR => 'Karl Glazebrook <karl_pgplot@mac.com>',
LICENSE => 'perl_5',
VERSION_FROM => 'F77.pm',
PREREQ_PM => {
'Text::ParseWords' => 0,
'File::Which' => 0,
'List::Util' => 0,
},
META_MERGE => {
"meta-spec" => { version => 2 },
dynamic_config => 0,
resources => {
bugtracker => {web=>'https://github.com/PDLPorters/extutils-f77/issues'},
repository => {
type => 'git',
url => 'git://github.com/PDLPorters/extutils-f77.git',
web => 'http://github.com/PDLPorters/extutils-f77',
},
x_IRC => 'irc://irc.perl.org/#pdl',
},
prereqs => {
develop => {
requires => {
'CPAN::Changes' => '0',
},
},
},
},
);
|