-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
35 lines (32 loc) · 895 Bytes
/
Makefile.PL
File metadata and controls
35 lines (32 loc) · 895 Bytes
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
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Localmark',
AUTHOR => 'Jovany Leandro G.C <bit4bit@riseup.net>',
VERSION_FROM => 'lib/Localmark/App.pm',
LICENSE => 'MIT',
MIN_PERL_VERSION => '5.40.0',
PREREQ_PM => {
'Dancer2' => '0.30',
'Moose' => '2.20',
'DBD::SQLite' => '1.66',
'File::Slurper' => '0.012'
},
TEST_REQUIRES => {
'Test::Simple' => '1.302190'
},
EXE_FILES => [
'script/localmark.pl'
],
META_MERGE => {
'meta-spec'=> { version => 2 },
resources => {
repository => {
type => 'fossil',
url => 'https://chiselapp.com/user/bit4bit/repository/localmark',
web => 'https://chiselapp.com/user/bit4bit/repository/localmark'
}
},
},
);