Bump version
[catagits/FCGI-ProcManager.git] / Makefile.PL
CommitLineData
0baf5fac 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
10require 5.004;
11use strict;
12use ExtUtils::MakeMaker;
13
14WriteMakefile
15 (NAME => 'FCGI::ProcManager',
9534a655 16 VERSION_FROM => 'lib/FCGI/ProcManager.pm', # finds $VERSION
0baf5fac 17 DISTNAME => 'FCGI-ProcManager',
18 ($] >= 5.005 ?
19 (ABSTRACT => 'A perl-based FastCGI process manager',
20 AUTHOR => 'James E Jurach (muaddib@erf.net)') : ()),
73e3ae9d 21 dist => { COMPRESS => 'gzip', SUFFIX => 'gz' },
22 META_MERGE => {
23 resources => {
24 repository => 'git://git.shadowcat.co.uk/catagits/FCGI-ProcManager',
25 },
26 },
0baf5fac 27 );