1
2# = HISTORY SECTION =====================================================================
3
4# ---------------------------------------------------------------------------------------
5# version | date   | author     | changes
6# ---------------------------------------------------------------------------------------
7# 2.03    |29.02.00| J. Stenzel | added perl version demand;
8# 2.02    |20.02.00| J. Stenzel | first version.
9# ---------------------------------------------------------------------------------------
10
11# = POD SECTION =========================================================================
12
13# Makefile.PL -- Makefile template for IPC::LDT
14#
15# This file is part of the "IPC::LDT" module package.
16# IPC::LDT is free software, see the module for license
17# details.
18
19
20# demand perl version
21require 5.00503;
22
23# load module
24use ExtUtils::MakeMaker;
25
26# write makefile
27WriteMakefile(
28              NAME         => 'IPC::LDT',
29              VERSION_FROM => 'LDT.pm',
30              PREREQ_PM    => {
31                               Filter::Util::Call => 1,
32                               Storable           => 0.6,
33                              },
34              dist         => {
35                               COMPRESS => 'gzip -9',
36                               SUFFIX   => 'tgz',
37                              },
38             );
39