File: Makefile.PL

package info (click to toggle)
libdbix-class-tree-nestedset-perl 0.10-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 196 kB
  • sloc: perl: 1,672; makefile: 2
file content (15 lines) | stat: -rwxr-xr-x 669 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use 5.008003;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    NAME              => 'DBIx::Class::Tree::NestedSet',
    VERSION_FROM      => 'lib/DBIx/Class/Tree/NestedSet.pm', # finds $VERSION
    PREREQ_PM         => {
        DBICx::TestDatabase     => 0.01,
        DBIx::Class             => 0.08000,
    }, # e.g., Module::Name => 1.1
    ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
      (ABSTRACT_FROM  => 'lib/DBIx/Class/Tree/NestedSet.pm', # retrieve abstract
       AUTHOR         => 'Ian Docherty <cpan@icydee.com>') : ()),
);