X-Git-Url: http://erislabs.net/gitweb/?p=liburi-template-perl.git;a=blobdiff_plain;f=Makefile.PL;h=2c7fd073b532b2b1895d3cbd1c7c8223d33e3278;hp=e9124c223855600acd8862ddacd7c0763a1b4c29;hb=6ce2a97438a9ca90e550caeefb1d3cecf259ded4;hpb=3f3d56e5fb9a55ee113ccf2bc03f3a453f80baa0 diff --git a/Makefile.PL b/Makefile.PL index e9124c2..2c7fd07 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,14 +1,17 @@ -# 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.68; + +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'; + +test_requires 'Test::More'; + +auto_install; +WriteAll;