Update of /cvsroot/data-pluginfile/data-pluginfiles
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4772
Modified Files:
Makefile.PL
Added Files:
MANIFEST META.yml
Log Message:
- made the Makefile.PL nicer so I can 'make dist'
--- NEW FILE: META.yml ---
# http://module-build.sourceforge.net/META-spec.html
#XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX#
name: Data-PluginFiles
version: 0.1
version_from: Data/PluginFiles.pm
installdirs: site
requires:
distribution_type: module
generated_by: ExtUtils::MakeMaker version 6.17
Index: Makefile.PL
===================================================================
RCS file: /cvsroot/data-pluginfile/data-pluginfiles/Makefile.PL,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** Makefile.PL 30 Apr 2005 00:04:13 -0000 1.1.1.1
--- Makefile.PL 30 Apr 2005 09:44:08 -0000 1.2
***************
*** 2,7 ****
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
! WriteMakefile(
! 'NAME' => 'Data::PluginFiles',
! 'VERSION_FROM' => 'Data/PluginFiles.pm', # finds $VERSION
! );
--- 2,15 ----
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
!
! my $details = {
! NAME => 'Data::PluginFiles',
! VERSION_FROM => 'Data/PluginFiles.pm', # finds $VERSION
! ($[ >= 5.005) ?
! ( AUTHOR => 'Andrew Chilton <andychilton AT users.sourceforge DOT net>',
! ABSTRACT => 'Module to read in a data file of format "Name: param=value..."')
! : (),
! PREREQ_PM => { 'Text::ParseWords' => 0 },
! };
!
! WriteMakefile( %$details );
--- NEW FILE: MANIFEST ---
README
Makefile.PL
META.yml
Data/PluginFiles.pm
t/00load.t
t/01data.t
t/02comments.t
t/03arrays.t
t/04heredocs.t
t/arrays.dat
t/comments.dat
t/data.dat
t/heredocs.dat
t/load.dat
docs/changelog
|