blob: 7a1b2dea26e09baa94d70259087a75bfeab983e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
use ExtUtils::MakeMaker;
use 5.004;
my @utils = qw(get-rd-token get-rd-week update-rd-tokens rhrd-user rhrd-group rhrd-show rhrd-ws-login rhrd-sanity-check);
WriteMakefile(
NAME => 'RHRD',
VERSION_FROM => 'lib/RHRD.pm',
LICENSE => 'gpl_3',
AUTHOR => 'Christian Pointner <equinox@helsinki.at>',
ABSTRACT => 'Radio Helsinki Rivendell libraries and utils',
PREREQ_PM => {
"Config::IniFiles" => 0,
"DBI" => 0,
"POSIX" => 0,
"DateTime" => 0,
"DateTime::TimeZone" => 0
},
EXE_FILES => [ map { "utils/$_" } @utils ],
);
|