File: Makefile.PL

package info (click to toggle)
libcoat-perl 0.331-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 276 kB
  • ctags: 82
  • sloc: perl: 917; makefile: 41
file content (11 lines) | stat: -rw-r--r-- 272 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
use ExtUtils::MakeMaker;

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