File: Makefile.PL

package info (click to toggle)
libxml-writer-simple-perl 0.08-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 128 kB
  • sloc: perl: 256; xml: 7; makefile: 2
file content (19 lines) | stat: -rw-r--r-- 615 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
use strict;
use warnings;
use ExtUtils::MakeMaker;
use 5.008003;

WriteMakefile(
    NAME                => 'XML::Writer::Simple',
    AUTHOR              => 'Alberto Simoes <ambs@cpan.org>',
    VERSION_FROM        => 'lib/XML/Writer/Simple.pm',
    ABSTRACT_FROM       => 'lib/XML/Writer/Simple.pm',
    PL_FILES            => {},
    PREREQ_PM => {
                  'XML::DT' => 0.42,
                  'Test::More' => 0,
                  'XML::DTDParser' => 2.01,
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'XML-Writer-Simple-*' },
);