clean out everything on "make realclean"
[p5sagit/Import-Into.git] / Makefile.PL
CommitLineData
38a56c0f 1use strict;
2use warnings FATAL => 'all';
38a56c0f 3use ExtUtils::MakeMaker;
4(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
5
6WriteMakefile(
88c433b3 7 NAME => 'Import::Into',
38a56c0f 8 VERSION_FROM => 'lib/Import/Into.pm',
9 PREREQ_PM => { },
10 LICENSE => 'perl',
bd5c78da 11
12 META_MERGE => {
2ca328a7 13 'meta-spec' => { version => 2 },
bd5c78da 14 dynamic_config => 0,
bd5c78da 15 resources => {
16 # r/w: p5sagit@git.shadowcat.co.uk:Import-Into.git
3db5d18e 17 repository => {
18 url => 'git://git.shadowcat.co.uk/p5sagit/Import-Into.git',
19 web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Import-Into.git',
20 type => 'git',
21 },
22 bugtracker => {
23 mailto => 'bug-Import-Into@rt.cpan.org',
24 web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Import-Into',
25 },
bd5c78da 26 },
27
28 },
dcc104db 29
30 realclean => { FILES => [ 'Distar/', 'MANIFEST*' ] },
38a56c0f 31);