-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
35 lines (34 loc) · 916 Bytes
/
Makefile.PL
File metadata and controls
35 lines (34 loc) · 916 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
35
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'PDL::Perldl2',
VERSION_FROM => 'lib/PDL/Perldl2/Script.pm',
AUTHOR => "Chris Marshall <chm at cpan dot org>",
LICENSE => 'perl',
MIN_PERL_VERSION => '5.016',
EXE_FILES => [ 'pdl2' ],
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => '7.14',
},
PREREQ_PM => {
'PDL' => '2.095',
'Moose' => 0,
'namespace::clean' => 0,
'Devel::REPL' => 0,
'Devel::REPL::Plugin' => 0,
},
META_MERGE => {
"meta-spec" => { version => 2 },
resources => {
homepage => 'http://pdl.perl.org/',
bugtracker => {web=>'https://github.com/PDLPorters/PDL-Perldl2/issues'},
repository => {
url => 'git://github.com/PDLPorters/PDL-Perldl2.git',
type => 'git',
web => 'https://github.com/PDLPorters/PDL-Perldl2',
},
x_IRC => 'irc://irc.perl.org/#pdl',
},
},
);