blob: c9f1b5e32fe4cca1d985c694917e9f2661ed1e90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
use ExtUtils::MakeMaker;
use 5.004;
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
},
);
|