X-Git-Url: http://erislabs.net/gitweb/?p=liburi-template-perl.git;a=blobdiff_plain;f=Makefile.PL;h=28e8af56c2d0869ef28e5b89ce0889c429d2d81d;hp=e9124c223855600acd8862ddacd7c0763a1b4c29;hb=81c7f1b85cb98976fe96ad4f8a11037b2cb3de35;hpb=3f3d56e5fb9a55ee113ccf2bc03f3a453f80baa0 diff --git a/Makefile.PL b/Makefile.PL index e9124c2..28e8af5 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,14 +1,20 @@ -# 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 1.06; + +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'; +requires 'URI::Escape'; +requires 'Unicode::Normalize'; + +test_requires 'Test::More'; + +repository 'http://github.com/bricas/uri-template'; + +WriteAll;