]> git.donarmstrong.com Git - deb_pkgs/libapache-gallery-perl.git/blob - Makefile.PL
import Apache2::Const::REDIRECT
[deb_pkgs/libapache-gallery-perl.git] / Makefile.PL
1 use ExtUtils::MakeMaker;
2 # $Id: Makefile.PL,v 1.7 2002/02/09 06:32:03 thomas Exp $
3 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
4 # the contents of the Makefile that is written.
5 WriteMakefile(
6     'NAME'              => 'Apache::Gallery',
7     'VERSION_FROM'      => 'lib/Apache/Gallery.pm', # finds $VERSION
8     'PREREQ_PM'         => { 
9                                 Image::Info  => 0,
10                                 Image::Size => 0,
11                                 Image::Imlib2 => 1.02,
12                                 Text::Template => 0, 
13                                 URI => 1.23,
14                                 CGI => 3.08,
15                                 Test::More => 0,
16                                 File::Spec => 0
17                                                                                  }, # e.g., Module::Name => 1.1
18     ($] >= 5.005 ?    ## Add these new keywords supported since 5.005
19       (ABSTRACT_FROM => 'lib/Apache/Gallery.pm', # retrieve abstract from module
20        AUTHOR     => 'Michael Legart <michael@legart.dk>') : ()),
21 );