-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
28 lines (28 loc) · 1.04 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
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
NAME => 'FTN::Packet',
AUTHOR => 'Robert James Clay <[email protected]>',
VERSION_FROM => 'lib/FTN/Packet.pm',
ABSTRACT_FROM => 'lib/FTN/Packet.pm',
LICENSE => 'perl',
PREREQ_PM => {
'Test::More' => 0,
'Test::Pod' => 1.22,
'Test::Pod::Coverage' => 1.08
},
(eval { ExtUtils::MakeMaker->VERSION(6.46) } ? (META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'git.code.sf.net/p/ftnpl/ftn-packet/code',
web => 'http://sourceforge.net/p/ftnpl/ftn-packet/code',
},
}})
: ()
),
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', ZIPFLAGS => '-or9',},
clean => { FILES => 'FTN-Packet-*' },
);