File: Makefile.PL

package info (click to toggle)
libroman-perl 1.22-2
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 68 kB
  • ctags: 8
  • sloc: perl: 89; makefile: 41
file content (20 lines) | stat: -rw-r--r-- 615 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 5.006;
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                => 'Roman',
    AUTHOR              => 'Alexandr Ciornii <alexchorny AT gmail.com>',
    VERSION_FROM        => 'lib/Roman.pm',
    ABSTRACT_FROM       => 'lib/Roman.pm',
    PL_FILES            => {},
    PREREQ_PM => {
        'Test::More' => 0,
        'Exporter' => 5.57,
    },
    ($ExtUtils::MakeMaker::VERSION gt '6.30'? 
     ('LICENSE'		=> 'perl', ) : ()),
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Roman-*' },
);