-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
22 lines (20 loc) · 734 Bytes
/
Makefile.PL
File metadata and controls
22 lines (20 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
use ExtUtils::MakeMaker;
opendir (SCRIPTS, 'bin') or die "couldn't open 'bin': $!\n";
my @scripts = grep { /^[^\.]/ } readdir SCRIPTS;
closedir SCRIPTS;
map { s%^%bin/% } @scripts;
WriteMakefile(
NAME => 'Remedy',
DISTNAME => 'Remedy',
ABSTRACT_FROM => "lib/Remedy.pm",
dist => { COMPRESS => 'gzip', SUFFIX => 'gz' },
VERSION_FROM => 'lib/Remedy.pm',
EXE_FILES => \@scripts,
AUTHOR => 'Tim Skirvin <tskirvin@stanford.edu>',
PREREQ_PM => {
'Lingua::EN::Inflect' => '1.89',
'Date::Parse' => '2.27',
'Log::Log4perl' => '1.07',
'Text::Wrap' => '2005',
},
);