File: Makefile.PL

package info (click to toggle)
libxml-feedpp-perl 0.95-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, trixie
  • size: 400 kB
  • sloc: perl: 1,877; sh: 28; makefile: 2
file content (28 lines) | stat: -rw-r--r-- 716 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
27
28
use ExtUtils::MakeMaker;

use strict;
use warnings;

WriteMakefile(
    NAME         => 'XML-FeedPP',
    VERSION_FROM => 'lib/XML/FeedPP.pm',
    PREREQ_PM    => {
        'Test::More'        => '0',
        'XML::TreePP'       => '0.39',
    },
    LICENSE      => 'perl_5',

    META_MERGE   => {
        'meta-spec' => { version => 2 },
        resources  =>
          { repository => {
                type => 'git',
                url  => 'https://github.com/kawanet/XML-FeedPP.git',
                web  => 'https://github.com/kawanet/XML-FeedPP',
            },
            homepage => 'http://perl.overmeer.net/CPAN/',
            license  => [ 'http://dev.perl.org/licenses/' ],
          },
      },
);