-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
41 lines (40 loc) · 1.23 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 strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Crypt::PBE',
AUTHOR => q{Giuseppe Di Terlizzi <gdt@cpan.org>},
VERSION_FROM => 'lib/Crypt/PBE.pm',
ABSTRACT_FROM => 'lib/Crypt/PBE.pm',
LICENSE => 'artistic_2',
EXE_FILES => ['bin/pkcs5-tool'],
MIN_PERL_VERSION => 5.008,
PL_FILES => {},
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => '0',
},
TEST_REQUIRES => {
'Test::More' => '0',
},
PREREQ_PM => {
'Crypt::CBC' => '0',
'Crypt::DES' => '0',
'Digest::MD2' => '0',
'Digest::MD5' => '0',
'Digest::SHA' => '0',
'Crypt::OpenSSL::AES' => '0',
'Term::ReadKey' => '0',
},
META_MERGE => {
'meta-spec' => { version => 2 },
'resources' => {
repository => {
type => 'git',
url => 'git://github.com/giterlizzi/perl-Crypt-PBE',
web => 'https://github.com/giterlizzi/perl-Crypt-PBE'
},
}
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Crypt-PBE-*' },
);