X-Git-Url: http://erislabs.net/gitweb/?p=liburi-template-perl.git;a=blobdiff_plain;f=Makefile.PL;h=28e8af56c2d0869ef28e5b89ce0889c429d2d81d;hp=a7295fcf67cbca3af1a5434d67bf414d1f935194;hb=81c7f1b85cb98976fe96ad4f8a11037b2cb3de35;hpb=83c3737484d89a57cfd230d6a4039a269e212035 diff --git a/Makefile.PL b/Makefile.PL index a7295fc..28e8af5 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,11 +1,20 @@ -use inc::Module::Install 0.68; +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'; -auto_install; +repository 'http://github.com/bricas/uri-template'; + WriteAll;