File tree Expand file tree Collapse file tree 1 file changed +40
-0
lines changed
Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change 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) ;
You can’t perform that action at this time.
0 commit comments