I'm writing a programmer's text editor (yes another one) in Perl called Kephra, which is also a CPAN module of course and bundled with Module::Install. Recently I saw that Module::Build has gone into core, so if I switch I could reduce dependencies. Is there any other reason to switch?
|
The cud as already been chewed a bit on this before in "Which framework should I use to write modules?" After spitting out the cud I decided to go with Module::Build but clearly different answers are possible! (though I've been happy with M::B so far). /I3az/ |
|||||
|
|
|
We use Module::Build in our group. The main reason is Easy Extensibility. Module::Build allows you to do more with your build process in pure Perl through subclassing. If you want to do more using Module::Install, you have to have knowledge of how Makefiles work, AFAIK. Since you presumably already know Perl, this can be an advantage. As you said, using Module::Build removes the dependency on an external However, the main cons that I can think of are:
All that said, though, I still recommend Module::Build simply for the extensibility. If that's not an issue for you, you may be better off sticking with Module::Install. |
|||
|
|
|
Well,
Also, don't forget that not everyone runs the latest version of everything :-) I don't remember any comparison of those modules, but I think you could find a few things from |
||||
|
|