-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.PL
33 lines (31 loc) · 1.22 KB
/
Makefile.PL
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 <[email protected]>},
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-*'},
);