File: Makefile.PL

package info (click to toggle)
libcoat-perl 0.334-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 364 kB
  • ctags: 86
  • sloc: perl: 1,195; makefile: 17
file content (12 lines) | stat: -rw-r--r-- 349 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME => 'Coat',
    VERSION_FROM => 'lib/Coat.pm',
    ABSTRACT => 'Light meta class for writing Moose compatible code',
    PREREQ_PM => {
        'Scalar::Util' => 0,
        'Test::Exception' => 0,
    },
    test => {TESTS => join( ' ', glob( 't/*.t' )).' '.join(' ', glob('t/moose_tests/*.t'))},
);