X-Git-Url: http://erislabs.net/gitweb/?p=liburi-template-perl.git;a=blobdiff_plain;f=Makefile.PL;h=28e8af56c2d0869ef28e5b89ce0889c429d2d81d;hp=9d387c88f26341e6196f467579c2d6c6b405c21b;hb=81c7f1b85cb98976fe96ad4f8a11037b2cb3de35;hpb=e0de6ab08282e52476e36abb99a35be9eff9ca8e diff --git a/Makefile.PL b/Makefile.PL index 9d387c8..28e8af5 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,10 +1,20 @@ -use inc::Module::Install 0.65; +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 'Test::More'; +requires 'URI::Escape'; +requires 'Unicode::Normalize'; + +test_requires 'Test::More'; + +repository 'http://github.com/bricas/uri-template'; -auto_install; WriteAll;