"Fossies" - the Fresh Open Source Software Archive

Member "Apache-Gallery-1.0.2/Makefile.PL" (8 Jun 2011, 767 Bytes) of package /linux/www/old/Apache-Gallery-1.0.2.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Perl source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file.

    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 );