-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
41 lines (41 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
32
33
34
35
36
37
38
39
40
41
use lib 'inc';
use strict;
use warnings;
use ExtUtils::MakeMaker;
use Inline::Module;
#
WriteMakefile(
NAME => 'Ntthal::XS',
AUTHOR => q{Frank Reinecke <[email protected]>},
VERSION_FROM => 'lib/Ntthal/XS.pm',
ABSTRACT_FROM => 'lib/Ntthal/XS.pm',
LIBS => [],
EXE_FILES => ['bin/ntthal_xs.pl'],
LICENSE => 'GPL',
PL_FILES => {},
MIN_PERL_VERSION => '5.006',
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => '0',
},
BUILD_REQUIRES => {
'Test::More' => '0',
'Test::Warn' => '0',
},
PREREQ_PM => {
'Data::Dump::Color' => '0',
'Mouse' => '0',
'Method::Signatures' => '0',
'Inline::C' => '0',
'Inline::Module' => '0',
'Scalar::Util' => '0',
},
dist => {COMPRESS => 'gzip -9f', SUFFIX => 'gz',},
clean => {FILES => ['Ntthal-XS-*', '_Inline']},
postamble => {
inline => {
module => 'Ntthal::XS',
stub => 'Ntthal::XS::Inline',
ilsm => 'Inline::C',
},
},
);