-
Notifications
You must be signed in to change notification settings - Fork 4
/
Makefile.PL
48 lines (43 loc) · 1.18 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
use strict;
use warnings;
use ExtUtils::MakeMaker 6.52;
use Config;
my %args = (
AUTHOR => ['Ari Jolma <ari.jolma at gmail.com>'],
NAME => 'Geo::GDAL::FFI',
ABSTRACT_FROM => "lib/Geo/GDAL/FFI.pm",
VERSION_FROM => "lib/Geo/GDAL/FFI.pm",
LICENSE => "artistic_2",
CONFIGURE_REQUIRES => {
'Alien::gdal' => 0,
},
PREREQ_PM => {
'PkgConfig' => 0.23026,
'FFI::Platypus' => 0,
'PDL' => 0,
'Sort::Versions' => 0,
'Alien::gdal' => 0,
},
TEST_REQUIRES => {
'Test::More' => 0,
'Test::Exception' => 0,
'JSON' => 0,
'Data::Dumper' => 0,
'Path::Tiny' => 0,
'Test::TempDir::Tiny' => 0,
},
META_MERGE => {
"meta-spec" => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'git://github.com/ajolma/Geo-GDAL-FFI.git',
web => 'https://github.com/ajolma/Geo-GDAL-FFI',
},
bugtracker => {
web => 'https://github.com/ajolma/Geo-GDAL-FFI/issues/',
},
},
},
);
WriteMakefile(%args);