1#!/usr/bin/perl -w
2
3# Copyright (c) Mark Summerfield 2000. All Rights Reserved.
4#
5# Copyright (c) Kevin Ryde 2010, 2011, 2012.
6#
7# This file may be used/distributed/modified under the LGPL.
8
9use 5.004;
10use strict;
11use ExtUtils::MakeMaker ;
12
13# See lib/ExtUtils/MakeMaker.pm for details of how to influence
14# the contents of the Makefile that is written.
15
16WriteMakefile(
17    'NAME'         => 'Image::Base',
18    'VERSION_FROM' => 'lib/Image/Base.pm', # finds $VERSION
19    'DISTNAME'     => 'Image-Base',
20    ($] >= 5.005 ?
21        (
22            ABSTRACT => 'Base class for image manipulation',
23            AUTHOR   => 'Mark Summerfield <summer@perlpress.com>',
24        ) : () ),
25    PREREQ_PM      => { 'Test' => 0 },
26    MIN_PERL_VERSION => '5.004',
27
28    'LIBS'         => [''],   # e.g., '-lm'
29    'DEFINE'       => '',     # e.g., '-DHAVE_SOMETHING'
30    'INC'          => '',     # e.g., '-I/usr/include/other'
31    'dist'         => { COMPRESS => "gzip -9", SUFFIX => "gz" },
32) ;
33