File: Makefile.PL

package info (click to toggle)
libxml-rss-feed-perl 2.212-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, lenny, squeeze, wheezy
  • size: 268 kB
  • ctags: 111
  • sloc: perl: 2,583; makefile: 38
file content (25 lines) | stat: -rw-r--r-- 714 bytes parent folder | download | duplicates (6)
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
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME          => 'XML::RSS::Feed',
    AUTHOR        => 'Jeff Bisbee <jbisbee@cpan.org>',
    VERSION_FROM  => 'lib/XML/RSS/Feed.pm',
    ABSTRACT_FROM => 'lib/XML/RSS/Feed.pm',
    PL_FILES      => {},
    PREREQ_PM     => {
        'Test::More'     => 1,
        'XML::RSS'       => 0,
        'Clone'          => 0,
        'Storable'       => 0,
        'Time::HiRes'    => 0,
        'URI'            => 0,
        'Digest::MD5'    => 0,
        'Encode'         => 0,
        'HTML::Entities' => 0,
    },
    dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean => { FILES    => 'XML-RSS-Feed-*' },
    LICENSE => 'perl',
);