in reply to autoconf versus Configure-style
perl Makefile.PL && make all test && make install
In fact when installing such a package via CPAN.pm, any dependencies on CPAN modules will be resolved automatically, just like for any other CPAN module.
Or even better, use the up and coming installation mechanism which does not rely on external make tools for much improved sanity: Module::Build. Installation then goes like
although there's also a EU::MM compatibility mode where you can use the familiar Makefile.PL approach.perl Build.PL && ./Build && ./Build test && ./Build install
Makeshifts last the longest.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: autoconf versus Configure-style
by tpederse (Sexton) on Oct 13, 2003 at 20:00 UTC | |
by Aristotle (Chancellor) on Oct 13, 2003 at 20:29 UTC |