Bump version
[catagits/FCGI-ProcManager.git] / Makefile.PL
1 # -*- perl -*-
2 # Copyright (c) 2000, FundsXpress Financial Network, Inc.
3 # This library is free software released "AS IS WITH ALL FAULTS"
4 # and WITHOUT ANY WARRANTIES under the terms of the GNU Lesser
5 # General Public License, Version 2.1, a copy of which can be
6 # found in the "COPYING" file of this distribution.
7
8 # $Id: Makefile.PL,v 1.2 2000/11/10 01:09:41 muaddib Exp $
9
10 require 5.004;
11 use strict;
12 use ExtUtils::MakeMaker;
13
14 WriteMakefile
15   (NAME         => 'FCGI::ProcManager',
16    VERSION_FROM => 'lib/FCGI/ProcManager.pm',   # finds $VERSION
17    DISTNAME     => 'FCGI-ProcManager',
18    ($] >= 5.005 ?
19     (ABSTRACT   => 'A perl-based FastCGI process manager',
20      AUTHOR     => 'James E Jurach (muaddib@erf.net)') : ()),
21    dist         => { COMPRESS => 'gzip', SUFFIX => 'gz' },
22     META_MERGE => {
23         resources => {
24             repository  =>      'git://git.shadowcat.co.uk/catagits/FCGI-ProcManager',
25         },
26     },
27   );