Skip to content

Commit 1ccd482

Browse files
committed
add minimal Makefile.PL
1 parent e266142 commit 1ccd482

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

Makefile.PL

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
use strict;
2+
use warnings;
3+
use ExtUtils::MakeMaker;
4+
5+
WriteMakefile(
6+
NAME => 'Foo',
7+
AUTHOR => q{briang <briang@cpan.org>},
8+
VERSION_FROM => 'lib/Foo.pm',
9+
ABSTRACT => 'does nowt',
10+
( $ExtUtils::MakeMaker::VERSION >= 6.3002
11+
? ( 'LICENSE' => 'MIT' )
12+
: () ),
13+
PL_FILES => {},
14+
PREREQ_PM => {
15+
},
16+
TEST_REQUIRES => {
17+
'Test2::V0' => 0,
18+
},
19+
);

0 commit comments

Comments
 (0)