-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
30 lines (30 loc) · 997 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
use 5.008008;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
NAME => 'WkDB',
VERSION_FROM => 'lib/WkDB.pm',
PREREQ_PM => {
# update debian/control, too!
'Workout' => undef,
'File::Spec' => undef,
'File::HomeDir' => undef,
'File::ShareDir' => undef,
'Class::Accessor::Fast' => undef,
'DBD::SQLite' => undef,
'DBIx::Class' => undef,
'DateTime' => undef,
'SQL::Translator' => undef,
}, # e.g., Module::Name => 1.1
'EXE_FILES' => [qw(
wkdiary
wkfile
wkfind
)],
($] >= 5.005 ? ## Add these new keywords supported since 5.005
(ABSTRACT_FROM => 'lib/WkDB.pm', # retrieve abstract from module
AUTHOR => 'Rainer Clasen') : ()),
# Un-comment this if you add C files to link with later:
# OBJECT => '$(O_FILES)', # link all the C files too
);