summaryrefslogtreecommitdiff
path: root/Makefile.PL
blob: a919baeee333b158b65d3b747dc82251ca0fe3aa (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-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 ],
);