File: Makefile.PL

package info (click to toggle)
libfcgi-procmanager-perl 0.17-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 108 kB
  • ctags: 35
  • sloc: perl: 230; makefile: 44
file content (22 lines) | stat: -rw-r--r-- 780 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- perl -*-
# Copyright (c) 2000, FundsXpress Financial Network, Inc.
# This library is free software released "AS IS WITH ALL FAULTS"
# and WITHOUT ANY WARRANTIES under the terms of the GNU Lesser
# General Public License, Version 2.1, a copy of which can be
# found in the "COPYING" file of this distribution.

# $Id: Makefile.PL,v 1.2 2000/11/10 01:09:41 muaddib Exp $

require 5.004;
use strict;
use ExtUtils::MakeMaker;

WriteMakefile
  (NAME         => 'FCGI::ProcManager',
   VERSION_FROM => 'ProcManager.pm',   # finds $VERSION
   DISTNAME     => 'FCGI-ProcManager',
   ($] >= 5.005 ?
    (ABSTRACT   => 'A perl-based FastCGI process manager',
     AUTHOR     => 'James E Jurach (muaddib@erf.net)') : ()),
   dist         => { COMPRESS => 'gzip', SUFFIX => 'gz' }
  );