-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathMakefile.PL
36 lines (36 loc) · 1.37 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
use 5.008008;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
NAME => 'Webqq::Client',
VERSION_FROM => 'lib/Webqq/Client.pm', # finds $VERSION
DISTNAME => 'Webqq-Client',
LICENSE => "perl",
PREREQ_PM => {
"JSON" => 0,
"AnyEvent::HTTP" => 0,
"LWP::UserAgent" => 0,
"LWP::Protocol::https" => 0,
"Time::Piece" => 0,
"Time::Seconds" => 0,
"Encode::Locale" => 0,
"Webqq::Encryption" => 0,
}, # e.g., Module::Name => 1.1
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Webqq-Client-* MANIFEST' },
META_MERGE => {
resources => {
repository=>{
type => 'git',
url => 'git://github.com/sjdy521/pfqq.git',
web => 'https://github.com/sjdy521/pfqq',
},
},
},
($] >= 5.005 ? ## Add these new keywords supported since 5.005
(
#ABSTRACT_FROM => 'lib/Webqq/Client.pm', # retrieve abstract from module
ABSTRACT => 'A webqq client in Perl Language',
AUTHOR => 'sjdy521 <[email protected]>') : ()),
);