-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathMakefile.PL
35 lines (28 loc) · 908 Bytes
/
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
use ExtUtils::MakeMaker;
use ExtUtils::Command qw(cp);
=cut
SimpleX.%: contrib/SimpleX.%
$(RM) $@; $(CP) $< $@ && $(CHMOD) 0444 $@
inc/slurp_fetchmailx.pm: inc/slurp_fetchmail.pm
sed -e s/slurp_fetchmail/slurp_fetchmailx/ -e s/Net::IMAP::Simple/Net::IMAP::SimpleX/ $< > $@
=cut
WriteMakefile(
'NAME' => 'Net::IMAP::Simple',
'VERSION_FROM' => 'lib/Net/IMAP/Simple.pm',
AUTHOR => 'Paul Miller <[email protected]>',
PREREQ_PM => {
'IO::Socket' => 0,
'IO::Select' => 0,
'Parse::RecDescent' => 0,
},
($ExtUtils::MakeMaker::VERSION ge '6.48'?
(MIN_PERL_VERSION => 5.008,
META_MERGE => {
keywords => [qw(imap simple)],
resources=> {
repository => 'http://github.com/jettero/net--imap--simple',
},
},
LICENSE => 'perl_5'
) : ()),
);