-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.PL
33 lines (33 loc) · 1.38 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
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Geo::H3::FFI',
VERSION_FROM => 'lib/Geo/H3/FFI.pm',
MIN_PERL_VERSION => '5.008',
BUILD_REQUIRES => {
'Test::More' => 0,
'Test::Number::Delta' => 0,
},
PREREQ_PM => {
'Package::New' => 0,
'FFI::CheckLib' => 0,
'FFI::Platypus' => 0,
'FFI::C' => 0,
},
ABSTRACT_FROM => 'lib/Geo/H3/FFI.pm',
AUTHOR => 'Michael R. Davis ([email protected])',
LICENSE => 'mit',
META_MERGE => {
'meta-spec' => { version => 2 },
'resources' => {
homepage => 'https://github.com/mrdvt92/perl-Geo-H3-FFI',
bugtracker => {
web => 'https://github.com/mrdvt92/perl-Geo-H3-FFI/issues',
},
repository => {
type => 'git',
url => '[email protected]:mrdvt92/perl-Geo-H3-FFI.git',
web => 'https://github.com/mrdvt92/perl-Geo-H3-FFI.git',
},
},
},
);