X-Git-Url: http://erislabs.net/gitweb/?p=liburi-template-perl.git;a=blobdiff_plain;f=Makefile.PL;h=9d387c88f26341e6196f467579c2d6c6b405c21b;hp=e9124c223855600acd8862ddacd7c0763a1b4c29;hb=e0de6ab08282e52476e36abb99a35be9eff9ca8e;hpb=90a266f52eaecdd5e15d16fe4fa3b98cb184c67c diff --git a/Makefile.PL b/Makefile.PL index e9124c2..9d387c8 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,14 +1,10 @@ -# 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.65; + +name 'URI-Template'; +all_from 'lib/URI/Template.pm'; + +requires 'URI'; +requires 'Test::More'; + +auto_install; +WriteAll;