-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
31 lines (26 loc) · 886 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
require 5.006;
use ExtUtils::MakeMaker;
$target = 'MS'; # set this to MS to avoid generating man pages with
$version = '1.00',
WriteMakefile
(
NAME => 'ConLogger',
AUTHOR => 'Walter Daems / Digital Manifold Waves ([email protected])',
ABSTRACT => 'Simple logging facility for STDOUT status printing',
VERSION => $version,
PREREQ_PM => {
},
( $target eq 'MS' ) ? ( MAN1PODS => {}, MAN3PODS => {} ) : (),
META_ADD =>
{ provides => {
'ConLogger' => { file => 'lib/Conlogger.pm',
version => $version },
'ConLogger::SubTask' => { file => 'lib/Conlogger/SubTask.pm',
version => $version },
'ConLogger::ProgressBar' => { file => 'lib/Conlogger/ProgressBar.pm',
version => $version },
}
},
# EXE_FILES => [ '' ],
test => { TESTS => 't/???-test-*.pl' },
);