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 35 36 37 38 39 40 41 42 43 44
|
use strict;
use warnings;
BEGIN { require 5.008; }
use ExtUtils::MakeMaker 6.11;
my %WriteMakefileArgs = (
'test' => {
'TESTS' => 't/*.t'
},
'NAME' => 'Scalar::Properties',
'DISTNAME' => 'Scalar-Properties',
'CONFIGURE_REQUIRES' => {
'ExtUtils::MakeMaker' => '6.11'
},
'AUTHOR' => 'Marcel Gruenauer <marcel@cpan.org>',
'BUILD_REQUIRES' => {},
'ABSTRACT' => 'Run-time properties on scalar variables',
'EXE_FILES' => [],
'VERSION' => '1.100860',
'PREREQ_PM' => {
'Test::More' => '0.88',
'Scalar::Util' => '0',
'English' => '0',
'File::Find' => '0',
'File::Temp' => '0',
'overload' => '0',
'Carp' => '0'
},
'LICENSE' => 'perl'
);
delete $WriteMakefileArgs{LICENSE}
unless eval { ExtUtils::MakeMaker->VERSION(6.31) };
WriteMakefile(%WriteMakefileArgs);
|