File: Makefile.PL

package info (click to toggle)
libxml-opml-simplegen-perl 0.04-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 72 kB
  • ctags: 10
  • sloc: perl: 170; makefile: 2
file content (20 lines) | stat: -rw-r--r-- 626 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 strict;
use warnings;
use ExtUtils::MakeMaker;
require 5.006;

WriteMakefile(
    NAME                => 'XML::OPML::SimpleGen',
    AUTHOR              => 'Marcus Thiesen <marcus@thiesen.org>',
    VERSION_FROM        => 'lib/XML/OPML/SimpleGen.pm',
    ABSTRACT_FROM       => 'lib/XML/OPML/SimpleGen.pm',
    PL_FILES            => {},
    PREREQ_PM => {
        'version'      => 0,
        'Test::More'   => 0,
        'XML::Simple'  => 0,
        'Class::Accessor' => 0,
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'XML-OPML-SimpleGen-*' },
);