-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
42 lines (38 loc) · 1.1 KB
/
Makefile.PL
File metadata and controls
42 lines (38 loc) · 1.1 KB
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
41
42
use 5.006;
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'BounceBee',
AUTHOR => q{Stefan Hornburg (Racke) <racke@linuxia.de>},
VERSION_FROM => 'lib/BounceBee.pm',
ABSTRACT_FROM => 'lib/BounceBee.pm',
LICENSE => 'artistic_2',
PL_FILES => {},
EXE_FILES => ['bin/bounce-bee'],
MIN_PERL_VERSION => 5.006,
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
},
BUILD_REQUIRES => {
'Test::More' => 0,
},
PREREQ_PM => {
# OO
'Moo' => 2,
'Type::Tiny' => 0,
# File tools
'Path::Tiny' => 0,
# Sisimai (for "delivered" reason)
'Sisimai' => '4.16.0',
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'BounceBee-*' },
META_MERGE => {
resources => {
repository => 'https://github.com/racke/BounceBee.git',
bugtracker => 'https://github.com/racke/BounceBee/issues',
IRC => 'irc://irc.freenode.net/#interchange',
},
},
);