-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile.PL
41 lines (40 loc) · 1.27 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
41
use 5.010;
use strict;
use warnings FATAL => 'all';
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'App::LedgerSMB::Admin',
AUTHOR => q{Chris Travers <[email protected]>},
VERSION_FROM => 'lib/App/LedgerSMB/Admin.pm',
ABSTRACT_FROM => 'lib/App/LedgerSMB/Admin.pm',
LICENSE => 'BSD',
PL_FILES => {},
EXE_FILES => [ 'bin/lsmb_reload', 'bin/lsmb_createdb' ],
MIN_PERL_VERSION => 5.010,
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
},
BUILD_REQUIRES => {
'Test::More' => 0,
"Test::Exception" => 0,
},
PREREQ_PM => {
"Moo" => 0,
"PGObject::Simple::Role" => 0,
"PGObject::Util::DBMethod" => 0,
"PGObject::Util::DBAdmin" => 0,
"PGObject::Util::DBChange" => 0.04,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'App-LedgerSMB-Admin-*' },
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/ledgersmb/App-LedgerSMB-Admin.git',
web => 'https://github.com/ledgersmb/App-LedgerSMB-Admin',
},
},
},
);