-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.PL
37 lines (36 loc) · 1.14 KB
/
Makefile.PL
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
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'SVG::Sparkline',
AUTHOR => 'G. Wade Johnson <gwadej@cpan.org>',
VERSION_FROM => 'lib/SVG/Sparkline.pm',
ABSTRACT_FROM => 'lib/SVG/Sparkline.pm',
LICENSE => 'perl',
EXE_FILES => ['bin/sparkline.pl', 'bin/sparkline.cgi'],
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0,
'Test::Exception' => 0,
'Carp' => 0,
'SVG' => 2.50,
'Getopt::Long' => 0,
'Pod::Usage' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'SVG-Sparkline-*' },
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/gwadej/svg-sparkline.git',
web => 'https://github.com/gwadej/svg-sparkline',
},
},
},
MIN_PERL_VERSION => 5.008,
test => {
TESTS => 't/*.t xt/*.t',
},
);