-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.PL
28 lines (27 loc) · 864 Bytes
/
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
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Acme::MetaSyntactic::morning_musume',
AUTHOR => 'Laurent Boivin (elbeho) <[email protected]>',
VERSION_FROM => 'lib/Acme/MetaSyntactic/morning_musume.pm',
PL_FILES => {},
BUILD_REQUIRES => {
'Test::More' => 0.94,
'Test::MetaSyntactic' => 1.001,
},
PREREQ_PM => {
'Acme::MetaSyntactic' => 1.007,
'Acme::MorningMusume' => 0.13,
},
MIN_PERL_VERSION => 5.006002,
META_MERGE => {
resources => {
repository => 'http://github.com/elbeho/Acme-MetaSyntactic-morning_musume/',
},
},
LICENSE => 'perl',
EXE_FILES => [ ],
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Acme-MetaSyntactic-morning_musume-*' },
);