-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathMakefile.PL
35 lines (34 loc) · 979 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
29
30
31
32
33
34
35
use 5.008;
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Portable',
VERSION_FROM => 'lib/Portable.pm',
AUTHOR => 'KMX',
ABSTRACT => 'Perl on a Stick',
MIN_PERL_VERSION => '5.008',
LICENSE => 'perl',
PREREQ_PM => {
'CPAN::Mini' => '0.575',
},
BUILD_REQUIRES => {
'ExtUtils::MakeMaker' => '6.59',
'Class::Inspector' => '1.22',
'LWP::Online' => '1.07',
'Test::Exception' => '0.27',
'Test::More' => '0.42',
'Test::NoWarnings' => '0.084',
},
META_MERGE => {
resources => {
repository => 'https://github.com/StrawberryPerl/Portable',
bugtracker => 'https://github.com/StrawberryPerl/Portable/issues',
},
},
dist => {
PREOP => 'perldoc -u lib/Portable.pm | pod2markdown > README.md',
TAR => 'ptar',
TARFLAGS => '-c -C -f'
},
);