use strict;
use warnings FATAL => 'all';
+use 5.008001;
use ExtUtils::MakeMaker;
+(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
WriteMakefile(
NAME => 'lib-with-preamble',
- VERSION => 0,
+ VERSION_FROM => 'lib/lib/with/preamble.pm',
PM_FILTER => 'perl my/filter',
PREREQ_PM => { 'PerlIO::via::dynamic' => 0.02 },
);
--- /dev/null
+BEGIN { -e 'Distar' or system("git clone git://git.shadowcat.co.uk/p5sagit/Distar.git") }
+use lib 'Distar/lib';
+use Distar;
+
+author 'mst - Matt S. Trout (cpan:MSTROUT) <mst@shadowcat.co.uk>';
+
+manifest_include my => qr{.*};
+
+1;