http://www.perlmonks.org?node_id=1015716

gideondsouza has asked for the wisdom of the Perl Monks concerning the following question:

So my question is pretty simple.

I noticed most modules use ExtUtils::MakeMaker and their Makefile.PL looks like this:

use ExtUtils::MakeMaker; WriteMakefile( ATTRIBUTE => VALUE [, ...] );

But some distributions, like Net::GitHub look very different:Link to the Makefile.pl.

This seems to use inc::Module::Install.