-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathMakefile.PL
25 lines (24 loc) · 875 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
use 5.006;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
NAME => 'mbtget',
VERSION_FROM => 'scripts/mbtget', # finds $VERSION
EXE_FILES => [qw(scripts/mbtget)],
LICENSE => 'MIT',
MIN_PERL_VERSION => '5.006',
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/sourceperl/mbtget.git',
web => 'https://github.com/sourceperl/mbtget',
},
},
},
PREREQ_PM => {}, # e.g., Module::Name => 1.1
($] >= 5.005 ? ## Add these new keywords supported since 5.005
(AUTHOR => 'Lefebvre Loic <[email protected]>') : ()),
);