-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
31 lines (30 loc) · 1.07 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
use strict;
use ExtUtils::MakeMaker;
use File::Spec;
WriteMakefile(
'DISTNAME' => 'Astro-HTM',
'NAME' => 'Astro::HTM',
'VERSION_FROM' => 'HTM.pm',
'PREREQ_PM' => {
'Class::Struct' => 0,
'Math::VectorReal' => 0,
},
'DIR' => [
'Constants',
'Constraint',
'Convex',
'Domain',
'Edge',
'Functions',
'Index',
'Layer',
'QuadNode',
'Range',
],
($] >= 5.005 ? ## Add these new keywords supported since 5.005
(ABSTRACT_FROM => 'HTM.pm',
AUTHOR => 'Brad Cavanagh <[email protected]>') : ()),
'dist' => { COMPRESS => 'gzip -9f',
SUFFIX => 'gz',
},
);