-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMakefile.PL
43 lines (39 loc) · 1.19 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
42
43
use 5.006;
use strict;
use warnings FATAL => 'all';
use ExtUtils::MakeMaker;
use File::ShareDir::Install;
File::ShareDir::Install::install_share( module => "App::Its::Potracheno" => "share" );
WriteMakefile(
NAME => 'App::Its::Potracheno',
AUTHOR => q{Konstantin S. Uvarin <[email protected]>},
VERSION_FROM => 'lib/App/Its/Potracheno.pm',
ABSTRACT_FROM => 'lib/App/Its/Potracheno.pm',
LICENSE => 'Artistic_2',
PL_FILES => {},
EXE_FILES => [qw[
bin/potracheno-backup.pl
bin/potracheno-dbtest.pl
bin/potracheno-lostpass.pl
]],
MIN_PERL_VERSION => 5.008,
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
},
BUILD_REQUIRES => {
'Test::More' => 0,
},
PREREQ_PM => {
'MVC::Neaf' => 0.19,
'DBD::SQLite' => 0,
'Template' => 0,
'Text::Markdown' => 0,
'LWP::UserAgent' => 0,
'JSON::XS' => 0,
'LWP::Protocol::https' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'App-Its-Potracheno-*' },
);
package MY;
use File::ShareDir::Install 'postamble';