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 34
|
require 5.006;
use ExtUtils::MakeMaker;
WriteMakefile(
'NAME' => 'Data::Float',
'AUTHOR' => 'Robert Rothenberg <rrwo@cpan.org>',
'ABSTRACT_FROM' => 'lib/Data/Float.pm',
'VERSION_FROM' => 'lib/Data/Float.pm',
'PREREQ_PM' => {
"Carp" => 0,
"Exporter" => 0,
"constant" => 0,
"integer" => 0,
"parent" => 0,
"perl" => "5.006",
"strict" => 0,
"warnings" => 0,
},
TEST_REQUIRES => {
'Test::More' => 0,
},
'INSTALLDIRS' => 'site',
'EXE_FILES' => [],
'PL_FILES' => {},
'SIGN' => 1,
'META_MERGE' => {
resources => {
repository => 'git://github.com/robrwo/Data-Float.git',
bugtracker => 'https://github.com/robrwo/Data-Float/issues',
},
}
);
|