Skip to content

Commit 83899ec

Browse files
committed
First draft Makefile.PL
1 parent 4481777 commit 83899ec

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

Makefile.PL

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
use ExtUtils::MakeMaker;
2+
use File::ShareDir::Install;
3+
4+
install_share 'share';
5+
6+
WriteMakefile(
7+
NAME => 'App::CPANModuleSite',
8+
VERSION_FROM => 'lib/App/CPANModuleSite.pm',
9+
MIN_PERL_VERSION => '5.14.0',
10+
PREREQ_PM => {
11+
Moose => 0,
12+
MetaCPAN::Client => 0,
13+
Template => 0,
14+
Path::Iterator::Rule => 0,
15+
Moose::Util::TypeConstraints => 0,
16+
File::ShareDir => 0,
17+
},
18+
BUILD_REQUIRES => {
19+
Test::More => 0,
20+
},
21+
ABSTRACT_FROM => 'lib/App/CPANModuleSite.pm',
22+
AUTHOR => 'Dave Cross <dave@perlhacks.com>',
23+
LICENSE => 'perl',
24+
META_MERGE => {
25+
'meta-spec' => { version => 2 },
26+
resources => {
27+
repository => {
28+
type => 'git',
29+
url => 'git://github.com/davorg/app-cpanmodulesite.git',
30+
web => 'https://github.com/davorg/app-cpanmodulesite',
31+
},
32+
bugtracker => {
33+
"web" => "https://github.com/davorg/app-cpanmodulesite/issues"
34+
}
35+
},
36+
},
37+
);
38+
39+
package MY;
40+
use File::ShareDir::Install qw(postamble);

0 commit comments

Comments
 (0)