Imported upstream version 0.12
[liburi-template-perl.git] / Makefile.PL
index e9124c2..2c7fd07 100644 (file)
@@ -1,14 +1,17 @@
-# Note: this file was auto-generated by Module::Build::Compat version 0.03
-use ExtUtils::MakeMaker;
-WriteMakefile
-(
-          'PL_FILES' => {},
-          'INSTALLDIRS' => 'site',
-          'NAME' => 'URI::Template',
-          'EXE_FILES' => [],
-          'VERSION_FROM' => 'lib/URI/Template.pm',
-          'PREREQ_PM' => {
-                           'URI' => 0
-                         }
-        )
-;
+use inc::Module::Install 0.68;
+
+if ( -e 'MANIFEST.SKIP' ) {
+    system( 'pod2text lib/URI/Template.pm > README' );
+}
+
+perl_version '5.006';
+
+name 'URI-Template';
+all_from 'lib/URI/Template.pm';
+
+requires 'URI';
+
+test_requires 'Test::More';
+
+auto_install;
+WriteAll;