File: Makefile.PL

package info (click to toggle)
libpod-abstract-perl 0.26-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 340 kB
  • sloc: perl: 2,373; makefile: 2
file content (26 lines) | stat: -rw-r--r-- 793 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
22
23
24
25
26
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                => 'Pod::Abstract',
    AUTHOR              => 'Ben Lilburne <bnej80@gmail.com>',
    VERSION_FROM        => 'lib/Pod/Abstract.pm',
    ABSTRACT_FROM       => 'lib/Pod/Abstract.pm',
    EXE_FILES           => [ 'bin/paf' ],
    ($ExtUtils::MakeMaker::VERSION >= 6.3002
      ? ('LICENSE'=> 'perl')
      : ()),
    PL_FILES            => {},
    PREREQ_PM => {
        'Test::More' => 0,
        'Pod::Parser' => 0,
        'IO::String' => 0,
        'File::Temp' => 0,
        'Scalar::Util' => 0,
        'Task::Weaken' => 0,
        'Module::Pluggable' => 0,
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Pod-Abstract-*' },
);