In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/978463b2c6a3c34cabcf3e18bb7d2e41abf7f9ef?hp=82dee7de92a0bd357037a76ff6e67939cc6e9adc>
- Log ----------------------------------------------------------------- commit 978463b2c6a3c34cabcf3e18bb7d2e41abf7f9ef Author: Nicholas Clark <[email protected]> Date: Fri Sep 18 16:08:19 2009 +0100 82dee7de92a0bd35 failed to add ext/lib/Makefile.PL. Oops. ----------------------------------------------------------------------- Summary of changes: ext/lib/Makefile.PL | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 49 insertions(+), 0 deletions(-) create mode 100644 ext/lib/Makefile.PL diff --git a/ext/lib/Makefile.PL b/ext/lib/Makefile.PL new file mode 100644 index 0000000..1f80b02 --- /dev/null +++ b/ext/lib/Makefile.PL @@ -0,0 +1,49 @@ +## This -*- perl -*- script writes the Makefile for lib.pm +# You should read "perldoc perlmodinstall" for instructions on +# how to install modules like this. + +require 5.006_001; +use strict; +use ExtUtils::MakeMaker; + +my $lib_version = '0.62'; + +my $extra_meta = <<"EMETA"; +provides: + lib: + file: lib_pm.PL + version: $lib_version +EMETA + +my $extra_meta_hash = { + provides => { + lib => { file => 'lib_pm.PL', + version => $lib_version, }, + }, +}; + +my $mm_version = $ExtUtils::MakeMaker::VERSION; + +WriteMakefile( + 'NAME' => 'lib', + 'VERSION' => $lib_version, + 'LICENSE' => 'perl', + 'PREREQ_PM' => {}, + 'ABSTRACT_FROM' => 'lib_pm.PL', + 'AUTHOR' => 'Steffen Mueller <[email protected]>', + 'INSTALLDIRS' => 'perl', + 'PL_FILES' => {'lib_pm.PL' => 'lib.pm'}, + 'PM' => {'lib.pm' => '$(INST_LIBDIR)/lib.pm'}, + 'clean' => {FILES => 'lib.pm'}, + ( + $mm_version >= 6.46 + ? (META_ADD => $extra_meta_hash) + : ( + $mm_version >= 6.3002 + ? (EXTRA_META => $extra_meta) + : () + ) + ), +); + + -- Perl5 Master Repository
