-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile.PL
More file actions
32 lines (32 loc) · 1.23 KB
/
Makefile.PL
File metadata and controls
32 lines (32 loc) · 1.23 KB
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
use 5.008008;
use ExtUtils::MakeMaker "6.46";
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
NAME => 'Webqq::Encryption',
VERSION_FROM => 'lib/Webqq/Encryption.pm', # finds $VERSION
DISTNAME => 'Webqq-Encryption',
LICENSE => "perl",
PREREQ_PM => {
#"Crypt::RSA" => 0,
"Crypt::OpenSSL::RSA" => 0,
"Crypt::OpenSSL::Bignum"=> 0,
"Digest::MD5" => 0,
}, # e.g., Module::Name => 1.1
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Webqq-Encryption-* MANIFEST' },
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository=>{
type => 'git',
url => 'git://github.com/sjdy521/Webqq-Encryption.git',
web => 'https://github.com/sjdy521/Webqq-Encryption',
},
},
},
($] >= 5.005 ? ## Add these new keywords supported since 5.005
(
ABSTRACT => 'Webqq Login Encryption Library',
AUTHOR => 'sjdy521 <sjdy521@163.com>') : ()),
);