File: Makefile.PL

package info (click to toggle)
libmoosex-compiletime-traits-perl 0.092801-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 116 kB
  • sloc: perl: 63; makefile: 2
file content (21 lines) | stat: -rw-r--r-- 548 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

use strict;
use warnings;

use ExtUtils::MakeMaker;

WriteMakefile(
  DISTNAME  => 'MooseX-CompileTime-Traits',
  NAME      => 'MooseX::CompileTime::Traits',
  AUTHOR    => 'Nicholas\ Perez\ \<nperez\@cpan\.org\>',
  ABSTRACT  => 'Allow\ for\ compile\ time\ traits\ application\ in\ classes\/roles',
  VERSION   => '0.092801',
  EXE_FILES => [ qw() ],
  (eval { ExtUtils::MakeMaker->VERSION(6.31) } ? (LICENSE => 'perl') : ()),
  PREREQ_PM    => {
    "Test::More" => '0.92',
    "MooseX::Declare" => '0.31',
  },
  test => {TESTS => 't/*.t'}
);