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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
#!/usr/bin/perl
use 5.006;
use strict;
use warnings FATAL => 'all';
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'SVG',
VERSION_FROM => 'lib/SVG.pm',
PREREQ_PM => {
'strict' => 0,
'warnings' => 0,
'constant' => 0,
'parent' => 0,
'Exporter' => 0,
'Scalar::Util' => 0,
},
BUILD_REQUIRES => {
'strict' => 0,
'warnings' => 0,
'ExtUtils::MakeMaker' => 0,
'File::Spec' => 0,
'Test::More' => '0.94',
},
CONFIGURE_REQUIRES => {
'perl' => '5.006',
'strict' => 0,
'warnings' => 0,
'ExtUtils::MakeMaker' => 0,
},
MIN_PERL_VERSION => 5.006,
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'SVG-*' },
($] >= 5.005 ?
(ABSTRACT_FROM => 'lib/SVG.pm',
LICENSE => 'perl',
AUTHOR => 'Ronan Oger <ronan@cpan.com>') : ()),
(eval { ExtUtils::MakeMaker->VERSION(6.46) } ? (META_MERGE => {
'meta-spec' => { version => 2 },
provides => {
'SVG' => { file => 'lib/SVG.pm' , version => '2.88' },
'SVG::DOM' => { file => 'lib/SVG/DOM.pm' , version => '2.88' },
'SVG::Element' => { file => 'lib/SVG/Element.pm' , version => '2.88' },
'SVG::Extension' => { file => 'lib/SVG/Extension.pm', version => '2.88' },
'SVG::XML' => { file => 'lib/SVG/XML.pm' , version => '2.88' },
},
resources => {
repository => {
type => 'git',
url => 'https://github.com/manwar/SVG.git',
web => 'https://github.com/manwar/SVG',
},
},
x_contributors => [
'Peter Wainwright',
'Ian Hickson',
'Adam Schneider',
'Steve Lihn',
'Allen Day',
'Gabor Szabo',
'Mohammad Sajid Anwar',
],
})
: ()
),
);
|