iferguson has asked for the wisdom of the Perl Monks concerning the following question:
My Makefile.PL looks like this :
can anyone point me in the right direction or a URL that can ?# # Makefile.PL for script "if_archive" # # Filename : Makefile.PL # Created : 18 March 2003 # use ExtUtils::MakeMaker; &WriteMakefile( NAME => 'if_archive', EXE_FILES => [ 'if_archive.pl' ], DISTNAME => 'if_archive', VERSION_FROM => 'if_archive.pl', PREREQ_PM => { 'Class::Date' => 0, 'Archive::Tar' => 0, 'MIME::Lite' => 0, }, dist => {COMPRESS => 'gzip', SUFFIX => 'gz'}, );
Thanks
Edit by tye, title, P tags
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: "perl Makefile.PL" does not create tarball?
by jasonk (Parson) on Mar 20, 2003 at 17:42 UTC | |
|
Re: Newbie Question : Makefile.PL
by adrianh (Chancellor) on Mar 20, 2003 at 16:30 UTC |