X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=Makefile.PL;h=c333f626c5f49adf5154819f2a8d79a60e380a48;hb=refs%2Ftags%2F0.15-2;hp=e9124c223855600acd8862ddacd7c0763a1b4c29;hpb=0cd0a0fa6c581ed524d1a008c8ffecc668175865;p=liburi-template-perl.git diff --git a/Makefile.PL b/Makefile.PL index e9124c2..c333f62 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,14 +1,18 @@ -# 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.77; + +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'; + +WriteAll;