forked from cosimo/perl5-app-autopod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
25 lines (23 loc) · 783 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
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'App::Autopod',
AUTHOR => 'Cosimo Streppone <cosimo@cpan.org>',
VERSION_FROM => 'lib/App/Autopod.pm',
ABSTRACT_FROM => 'lib/App/Autopod.pm',
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0,
'Module::Pluggable' => 0,
},
META_MERGE => {
resources => {
repository => 'git://github.com/cosimo/perl5-app-autopod.git',
bugtracker => 'mailto:bug-app-autopod@rt.cpan.org',
license => 'http://dev.perl.org/licenses/',
},
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'App-Autopod-*' },
);