-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
35 lines (31 loc) · 926 Bytes
/
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
use 5.010000;
use ExtUtils::MakeMaker;
#system 'pod2text lib/namespace/clean/xs.pm > README';
WriteMakefile(
NAME => 'namespace::clean::xs',
VERSION_FROM => 'lib/namespace/clean/xs.pm',
AUTHOR => ['Sergey Aleynikov <[email protected]>'],
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 6.64,
},
PREREQ_PM => {
'XSLoader' => 0,
},
TEST_REQUIRES => {
'Test::More' => 0,
},
META_MERGE => {
resources => {
repository => 'https://github.com/dur-randir/namespace-clean-xs',
bugtracker => 'https://github.com/dur-randir/namespace-clean-xs/issues',
},
dynamic_config => 0,
},
ABSTRACT_FROM => 'lib/namespace/clean/xs.pm',
LICENSE => 'perl',
MIN_PERL_VERSION=> 5.010000,
);
{
package MY;
sub postamble { '$(OBJECT) : '.join(' ', glob('xs/*.h')) }
}