Help for this page

Select Code to Download


  1. or download this
    ~/dev/MyModule/Makefile.PL
    ~/dev/MyModule/lib/Local/Math/EM.pm    # Local::Math::EM
    ...
    ~/dev/MyModule/lib/Local/Math/Log2.pm  # Local::Math::Log2
    ~/dev/MyModule/bin/script.pl
    ~/dev/MyModule/t/*.t                   # (optional but recommended)
    
  2. or download this
    use ExtUtils::MakeMaker;
    WriteMakefile(
    ...
        VERSION   => '0.01',
        EXE_FILES => [ 'bin/script.pl' ],
    );
    
  3. or download this
    make distclean    # if you've previously run "perl Makefile.PL"
    perl Makefile.PL
    make manifest
    make dist         # will create a Local-Math-0.01.tar.gz for you!