-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile.PL
40 lines (37 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
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Kernel::Keyring',
AUTHOR => 'Viktor Liu',
VERSION_FROM => 'lib/Kernel/Keyring.pm',
ABSTRACT_FROM => 'lib/Kernel/Keyring.pm',
LIBS => ['-lkeyutils'],
LICENSE => 'perl_5',
dist => {
COMPRESS => 'gzip -9f', SUFFIX => 'gz',
},
clean => {FILES => 'Kernel-Keyring-*'},
META_MERGE => {
'meta-spec' => {version => 2},
resources => {
homepage => 'https://github.com/lixmal/Kernel-Keyring',
bugtracker => {
web => 'https://github.com/lixmal/Kernel-Keyring/issues',
},
repository => {
type => 'git',
url => 'git://github.com/lixmal/Kernel-Keyring.git',
web => 'https://github.com/lixmal/Kernel-Keyring',
},
},
},
PREREQ_PM => {
'Carp' => '0',
},
TEST_REQUIRES => {
'Test::More' => '0',
'MIME::Base64' => '0',
'Encode' => '0',
}
);