File: Makefile.PL

package info (click to toggle)
libmail-spf-query-perl 1%3A1.999.1-3
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 252 kB
  • ctags: 81
  • sloc: perl: 1,778; makefile: 51; sh: 19
file content (20 lines) | stat: -rw-r--r-- 642 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
use 5.006;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    NAME                => 'Mail::SPF::Query',
    VERSION_FROM        => 'lib/Mail/SPF/Query.pm',
    ABSTRACT_FROM       => 'lib/Mail/SPF/Query.pm',
    AUTHOR              => 'Meng Weng Wong <mengwong+spf@pobox.com>',
    PREREQ_PM           => {
        Sys::Hostname::Long => 0,
        Net::DNS            => 0.46,
        Net::CIDR::Lite     => 0.15,
        URI::Escape         => 0
    },
    EXE_FILES           => [
        'bin/spfd',
        'bin/spfquery'
    ]
);