Skip to content

Instantly share code, notes, and snippets.

/Makefile.PL Secret

Created November 14, 2014 18:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/f0193b87412dcafebffc to your computer and use it in GitHub Desktop.
Save anonymous/f0193b87412dcafebffc to your computer and use it in GitHub Desktop.
use strict;
use warnings;
use 5.008001;
use ExtUtils::MakeMaker;
use lib 'inc'; use Inline::Module::MakeMaker;
WriteMakefile(
NAME => 'Acme::Math::XS',
VERSION => '0.0.6',
ABSTRACT => 'Math is HARD (faster)',
AUTHOR => 'Ingy döt Net <ingy@cpan.org>',
LICENSE => 'perl',
MIN_PERL_VERSION => '5.008001',
test => { TESTS => 't/*.t' },
);
FixMakefile(
module => 'Acme::Math::XS',
);
@karenetheridge
Copy link

[MakeMaker::Awesome]
delimiter = |
footer = |use lib 'inc'; use Inline::Module::MakeMaker;
footer = |FixMakefile(
footer = |  module => 'Acme::Math::XS',
footer = |);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment