-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMakefile.PL
38 lines (37 loc) · 835 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
36
37
38
use strict;
use warnings;
use ExtUtils::MakeMaker;
my $pm = 'lib/XS/Check.pm';
my $pod = 'lib/XS/Check.pod';
my $github = 'github.com/benkasminbullock/xs-check';
my $repo = "https://$github";
WriteMakefile (
NAME => 'XS::Check',
VERSION_FROM => $pm,
ABSTRACT_FROM => $pod,
AUTHOR => 'Ben Bullock <[email protected]>',
LICENSE => 'perl',
PREREQ_PM => {
'Text::LineNumber' => '0.02',
'C::Tokenize' => '0.18',
'File::Slurper' => '0.012',
},
META_MERGE => {
'meta-spec' => {
version => 2,
},
resources => {
repository => {
type => 'git',
url => "git://$github.git",
web => $repo,
},
bugtracker => {
web => "$repo/issues",
},
# homepage => 'http://',
},
},
MIN_PERL_VERSION => '5.006001',
EXE_FILES => ['./script/checkxs',],
);