-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathMakefile.PL
36 lines (35 loc) · 893 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
36
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'PDL::Graphics::Prima',
VERSION_FROM => 'lib/PDL/Graphics/Prima.pm',
LICENSE => 'perl',
MIN_PERL_VERSION => '5.012', # Prima is minimum 5.12
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
},
PREREQ_PM => {
'PDL::Drawing::Prima' => '0.15',
'PDL' => '2.4.0',
Prima => '1.68',
},
TEST_REQUIRES => {
'Test::More' => '0.88',
},
META_MERGE => {
"meta-spec" => { version => 2 },
dynamic_config => 0,
resources => {
x_IRC => 'irc://irc.perl.org/#pdl',
repository => {
type => 'git',
url => 'git@github.com:PDLPorters/PDL-Graphics-Prima.git',
web => 'https://github.com/PDLPorters/PDL-Graphics-Prima',
},
bugtracker => {
web => 'https://github.com/PDLPorters/PDL-Graphics-Prima/issues',
},
},
},
);