forked from lixmal/keepass4web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
28 lines (23 loc) · 830 Bytes
/
Copy pathMakefile.PL
File metadata and controls
28 lines (23 loc) · 830 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
use strict;
use warnings;
use ExtUtils::MakeMaker;
# Normalize version strings like 6.30_02 to 6.3002,
# so that we can do numerical comparisons on it.
my $eumm_version = $ExtUtils::MakeMaker::VERSION;
$eumm_version =~ s/_//;
WriteMakefile(
NAME => 'KeePass4Web',
AUTHOR => q{Viktor Liu},
VERSION => '0.8.2',
ABSTRACT => 'KeePass web application',
($eumm_version >= 6.3001 ? ('LICENSE'=> 'gpl_3') : ()),
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0,
'Plack::Test' => 0,
'Dancer2' => 0,
'Dancer2::Plugin::Ajax' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'KeePass4Web-*' },
);