-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathMakefile.PL
More file actions
34 lines (33 loc) · 822 Bytes
/
Makefile.PL
File metadata and controls
34 lines (33 loc) · 822 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
27
28
29
30
31
32
33
34
use strict;
use warnings;
use Getopt::Long qw(GetOptions);
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Net::Eboks',
AUTHOR => 'Dmitry Karasik <dmitry@karasik.eu.org>',
ABSTRACT_FROM => 'Eboks.pm',
VERSION_FROM => 'Eboks.pm',
EXE_FILES => [
map { "bin/eboks$_" } qw(2pop -dump -auth-mitid),
(($^O =~ /win32/i) ? '-install-win32' : ())
],
LICENSE => 'freebsd',
PREREQ_PM => {
'LWP' => 0,
'DateTime' => 0,
'IO::Lambda' => 1.29,
'MIME::Entity' => 0,
'MIME::Base64' => 0,
'XML::Simple' => 0,
'Getopt::Long' => 0,
'Digest::SHA' => 0,
'IO::Socket::SSL' => 0,
'Crypt::OpenSSL::RSA' => 0,
},
MIN_PERL_VERSION => 5.010,
META_MERGE => {
resources => {
repository => 'http://github.com/dk/Net-Eboks'
},
},
);