-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
40 lines (36 loc) · 1.13 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
34
35
36
37
38
39
40
#!/usr/bin/env perl
use strict;
use utf8;
use warnings;
use ExtUtils::MakeMaker;
my %WriteMakefileArgs = (
NAME => 'Personnummer',
AUTHOR => 'Simon Sawert <[email protected]>',
LICENSE => 'MIT',
ABSTRACT_FROM => 'lib/Personnummer.pm',
VERSION_FROM => 'lib/Personnummer.pm',
BUILD_REQUIRES => {},
TEST_REQUIRES => {
'Test::More' => 0,
},
PREREQ_PM => {
'DateTime' => 0,
'DateTime::Duration' => 0,
},
META_MERGE => {
'dynamic_config' => 0,
'meta-spec' => { version => 2 },
'resources' => {
bugtracker => { web => 'https://github.com/personnummer/perl-personnummer/issues' },
homepage => 'https://github.com/personnummer/perl-personnummer',
repository => {
type => 'git',
url => 'https://github.com/personnummer/perl-personnummer.git',
web => 'https://github.com/personnummer/perl-personnummer',
},
},
'x_contributors' => ['Simon Sawert'],
},
test => {},
);
WriteMakefile( %WriteMakefileArgs );