-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile_PL_settings.plx
More file actions
41 lines (36 loc) · 864 Bytes
/
Makefile_PL_settings.plx
File metadata and controls
41 lines (36 loc) · 864 Bytes
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
# vi:set ft=perl:
use strict;
use warnings;
my $name = 'Sys::GetRandom::PP';
(my $dist = $name) =~ s!::!-!g;
(my $module = $name . '.pm') =~ s!::!/!g;
return {
NAME => $name,
AUTHOR => q{Lukas Mai <l.mai@web.de>},
CONFIGURE_REQUIRES => {},
BUILD_REQUIRES => {
'Config' => 0,
'File::Temp' => 0,
},
TEST_REQUIRES => {
'Test2::V0' => 0,
},
PREREQ_PM => {
'Carp' => 0,
'Exporter' => '5.57',
'constant' => '1.03',
'strict' => 0,
'warnings' => 0,
},
PL_FILES => {
'_Bits.pm.PL' => '_Bits.pm',
},
PM => {
"lib/$module" => "\$(INST_LIB)/$module",
'_Bits.pm' => '$(INST_ARCHLIB)/Sys/GetRandom/PP/_Bits.pm',
},
clean => {
FILES => "$dist-* _Bits.pm",
},
REPOSITORY => [ github => 'mauke' ],
};