cvsuser 04/12/28 14:28:24
Modified: App-Options Makefile.PL
Log:
add dependencies, version 0.92
Revision Changes Path
1.7 +8 -2 p5ee/App-Options/Makefile.PL
Index: Makefile.PL
===================================================================
RCS file: /cvs/public/p5ee/App-Options/Makefile.PL,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- Makefile.PL 2 Sep 2004 21:09:00 -0000 1.6
+++ Makefile.PL 28 Dec 2004 22:28:24 -0000 1.7
@@ -1,6 +1,6 @@
######################################################################
-## File: $Id: Makefile.PL,v 1.6 2004/09/02 21:09:00 spadkins Exp $
+## File: $Id: Makefile.PL,v 1.7 2004/12/28 22:28:24 spadkins Exp $
######################################################################
use ExtUtils::MakeMaker;
@@ -14,8 +14,14 @@
%opts = (
'NAME' => 'App-Options',
'DISTNAME' => 'App-Options',
- 'VERSION' => '0.91',
+ 'VERSION' => '0.92',
'EXE_FILES' => [ @programs ],
+ 'PREREQ_PM' => {
+ "Carp" => 0, # use croak() instead of die()
+ "Sys::Hostname" => 0, # use hostname() to get hostname/host options
+ "Cwd" => 0, # use abs_path() to turn relative to
absolute directory
+ "File::Spec" => 0, # make directory handling work
cross-platform (i.e. MSWin)
+ },
'dist' => {'COMPRESS'=>'gzip -9f', 'SUFFIX' => 'gz',
'ZIP'=>'/usr/bin/zip','ZIPFLAGS'=>'-rl'},
);