File: Makefile.PL

package info (click to toggle)
libalgorithm-annotate-perl 0.10-1.1
  • links: PTS
  • area: main
  • in suites: lenny, squeeze
  • size: 40 kB
  • ctags: 9
  • sloc: perl: 65; makefile: 42
file content (18 lines) | stat: -rw-r--r-- 527 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/perl
use ExtUtils::MakeMaker;

WriteMakefile(
    AUTHOR              => 'Chia-liang Kao (clkao@clkao.org)',
    ABSTRACT            => 'Represent a series of changes in annotation list',
    NAME                => 'Algorithm::Annotate',
    VERSION_FROM        => 'Annotate.pm',
    DISTNAME            => 'Algorithm-Annotate',
    PREREQ_PM           => {
        'Algorithm::Diff'   => '1.15',
    },
    dist                => {
        COMPRESS        => 'gzip -9',
        SUFFIX          => '.gz',
    },
);