ExtUtils::MakeMaker::Tutorial - Writing a module with MakeMaker
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Your::Module',
VERSION_FROM => 'lib/Your/Module.pm'
);
This is a short tutorial on writing a simple module with MakeMaker. Its really not that hard.