Codebase list libautobox-core-perl / 1eda80c1-c342-4348-90e7-6ebc086d10e2/main Makefile.PL
1eda80c1-c342-4348-90e7-6ebc086d10e2/main

Tree @1eda80c1-c342-4348-90e7-6ebc086d10e2/main (Download .tar.gz)

Makefile.PL @1eda80c1-c342-4348-90e7-6ebc086d10e2/mainraw · history · blame

use strict;
use warnings;

use ExtUtils::MakeMaker;

# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    NAME               => 'autobox::Core',
    VERSION_FROM       => 'lib/autobox/Core.pm',               # finds $VERSION
    PREREQ_PM          => {
        autobox => 2.86,
        'Test::More' => 0.88,
        Want   => 0.29,
    },
    ABSTRACT_FROM      => 'lib/autobox/Core.pm',               # retrieve abstract from module
    AUTHOR             => 'Scott Walters scott@slowass.net',
    (eval($ExtUtils::MakeMaker::VERSION) >= 6.31 ? (LICENSE => 'perl') : ()),
    CONFIGURE_REQUIRES => {
        'ExtUtils::MakeMaker' => '6.46',                       # for META_MERGE
    },
    META_MERGE => {
        resources => {
            bugtracker => 'http://github.com/scrottie/autobox-Core/issues',
            repository => 'http://github.com/scrottie/autobox-Core',
        }
    },
);