-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
34 lines (33 loc) · 1.05 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
require 5.008008;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'USCIS::Case',
VERSION_FROM => 'lib/USCIS/Case.pm',
MIN_PERL_VERSION => 5.008008,
PREREQ_PM => {
'LWP::UserAgent' => '6.02',
'LWP::Protocol::https' => '6.02',
'XML::LibXML' => '2.0132',
},
BUILD_REQUIRES => {
'Test::More' => '0',
},
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/meow-watermelon/USCIS-Case.git',
web => 'https://github.com/meow-watermelon/USCIS-Case',
},
bugtracker => {
web => 'https://github.com/meow-watermelon/USCIS-Case/issues',
},
},
},
ABSTRACT_FROM => 'lib/USCIS/Case.pm',
AUTHOR => 'Hui Li <[email protected]>',
LICENSE => 'perl',
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'USCIS-Case*' },
);