-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
57 lines (52 loc) · 1.47 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Generated file.
use utf8;
use ExtUtils::MakeMaker;
use Alien::Build::MM;
my $abmm = Alien::Build::MM->new;
my %WriteMakefileArgs = (
NAME => 'Alien::libccv',
DISTNAME => 'Alien-libccv',
AUTHOR => 'Roy Storey <[email protected]>',
LICENSE => 'artistic_2',
ABSTRACT_FROM => 'lib/Alien/libccv.pm',
VERSION_FROM => 'lib/Alien/libccv.pm',
EXE_FILES => [qw()],
OBJECT => '',
BUILD_REQUIRES => {}
,
TEST_REQUIRES => {
'Test2::V0' => '0.000140'
}
,
PREREQ_PM => {
'Alien::Build' => '2.40',
'Alien::GSL' => '1.03',
'Alien::PNG' => '0.04',
'perl' => 'v5.20.0'
}
,
META_MERGE => {
'dynamic_config' => 0,
'meta-spec' => {version => 2},
'resources' => {
bugtracker => {web => 'https://github.com/kiwiroy/Alien-libccv/issues'},
homepage => 'https://github.com/kiwiroy/Alien-libccv',
repository => {
type => 'git',
url => 'https://github.com/kiwiroy/Alien-libccv.git',
web => 'https://github.com/kiwiroy/Alien-libccv',
},
},
'x_contributors' => []
,
},
test => {TESTS => (-e 'META.yml' ? 't/*.t' : 't/*.t xt/*.t')},
);
unless (eval { ExtUtils::MakeMaker->VERSION('6.63_03') }) {
my $test_requires = delete $WriteMakefileArgs{TEST_REQUIRES};
@{$WriteMakefileArgs{PREREQ_PM}}{keys %$test_requires} = values %$test_requires;
}
WriteMakefile($abmm->mm_args(%WriteMakefileArgs));
sub MY::postamble {
$abmm->mm_postamble;
}