-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
executable file
·32 lines (31 loc) · 1023 Bytes
/
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
use 5.024;
use strict;
use warnings;
use ExtUtils::MakeMaker::CPANfile;
WriteMakefile(
NAME => 'DataStructure',
AUTHOR => q{Mathias Kende <[email protected]>},
VERSION_FROM => 'lib/DataStructure.pm',
ABSTRACT => 'Collection of useful data-structures in pure Perl',
LICENSE => 'mit',
MIN_PERL_VERSION => '5.024',
MAN3PODS => {},
NO_MYMETA => 1,
META_MERGE => {
'meta-spec' => { version => 2 },
# Goes with NO_MYMETA (which would provide the dynamic config).
dynamic_config => 0,
resources => {
repository => {
type => 'git',
url => '[email protected]:mkende/perl-datastructure.git',
web => 'https://github.com/mkende/perl-datastructure',
},
bugtracker => {
web => 'https://github.com/mkende/perl-datastructure/issues',
},
},
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'DataStructure-*' },
);