increment $VERSION after 0.26 release
[p5sagit/Sub-Name.git] / Makefile.PL
index 5c8a75f..f0b01bc 100644 (file)
@@ -1,11 +1,12 @@
-# $Id: Makefile.PL,v 1.1 2004/08/17 19:23:24 xmath Exp $
-
-use 5.006;
-use ExtUtils::MakeMaker;
+use strict;
+use warnings;
+use lib 'inc';
+use ExtUtils::MakeMaker::Dist::Zilla::Develop;
 
 WriteMakefile(
-       NAME            => 'Sub::Name',
-       VERSION_FROM    => 'lib/Sub/Name.pm',
-       ABSTRACT_FROM   => 'lib/Sub/Name.pm',
-       AUTHOR          => 'Matthijs van Duin <xmath@cpan.org>'
+    NAME => 'Sub::Name',
+    VERSION_FROM => 'lib/Sub/Name.pm',
+    INSTALLMAN1DIR => 'none',
+    INSTALLMAN3DIR => 'none',
+    NORECURS => 1,
 );