File: Makefile.PL

package info (click to toggle)
liburi-packageurl-perl 2.22-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 276 kB
  • sloc: perl: 1,447; sh: 45; makefile: 2
file content (33 lines) | stat: -rw-r--r-- 1,245 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
29
30
31
32
33
#!perl

use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME               => 'URI::PackageURL',
    AUTHOR             => q{Giuseppe Di Terlizzi <gdt@cpan.org>},
    VERSION_FROM       => 'lib/URI/PackageURL.pm',
    ABSTRACT_FROM      => 'lib/URI/PackageURL.pm',
    LICENSE            => 'artistic_2',
    EXE_FILES          => ['bin/purl-tool'],
    MIN_PERL_VERSION   => 5.010,
    PL_FILES           => {},
    CONFIGURE_REQUIRES => {'ExtUtils::MakeMaker' => '0'},
    TEST_REQUIRES      => {'Test::More' => '0', 'JSON::PP'   => '0', 'CPAN::DistnameInfo' => 0},
    PREREQ_PM          => {'JSON::PP'   => '0', 'List::Util' => '0'},
    META_MERGE         => {
        'meta-spec' => {version => 2},
        'resources' => {
            bugtracker => {web => 'https://github.com/giterlizzi/perl-URI-PackageURL/issues'},
            repository => {
                type => 'git',
                url  => 'git://github.com/giterlizzi/perl-URI-PackageURL',
                web  => 'https://github.com/giterlizzi/perl-URI-PackageURL'
            },
        },
        x_purl => 'pkg:cpan/GDT/URI-PackageURL'
    },
    dist  => {COMPRESS => 'gzip -9f', SUFFIX => 'gz',},
    clean => {FILES    => 'URI-PackageURL-*'},
);