File: Makefile.PL

package info (click to toggle)
libautobox-core-perl 1.2-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 328 kB
  • ctags: 161
  • sloc: perl: 567; makefile: 2
file content (20 lines) | stat: -rw-r--r-- 802 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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' => 0.11},
    ABSTRACT_FROM      => 'lib/autobox/Core.pm',               # retrieve abstract from module
    AUTHOR             => 'Scott Walters scott@slowass.net',
    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',
        }
    },
);