Beatnik has asked for the wisdom of the Perl Monks concerning the following question:
Foo::Bar uses Foo::Bar::Baz. That's ofcourse not the problem. The problem lies in getting it all in the same archive.Foo::Bar (Foo/Bar.pm) Foo::Bar::Baz (Foo/Bar/Baz.pm)
Any Makefile.PL guru present? please step forwarduse ExtUtils::MakeMaker; # See lib/ExtUtils/MakeMaker.pm for details of how to influence # the contents of the Makefile that is written. WriteMakefile( 'NAME' => 'Foo::Bar', 'VERSION_FROM' => 'Bar.pm', # finds $VERSION 'PREREQ_PM' => { 'LWP::Simple' => '1.35', 'HTML::TokeParser' => '2.24', }, 'dist' => {COMPRESS=>'gzip',SUFFIX=>'gz'}, );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Packages & Makefile.PL
by mattriff (Chaplain) on Apr 14, 2002 at 16:24 UTC | |
by tachyon (Chancellor) on Apr 14, 2002 at 18:27 UTC | |
|
Re: Packages & Makefile.PL
by tachyon (Chancellor) on Apr 14, 2002 at 18:23 UTC | |
|
Re: Packages & Makefile.PL
by chromatic (Archbishop) on Apr 14, 2002 at 16:51 UTC | |
|
(crazyinsomniac: MANIFEST) Re: Packages & Makefile.PL
by crazyinsomniac (Prior) on Apr 15, 2002 at 09:06 UTC |