File: Makefile.PL

package info (click to toggle)
libgd-graph3d-perl 0.59-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 220 kB
  • ctags: 46
  • sloc: perl: 1,337; makefile: 52
file content (36 lines) | stat: -rw-r--r-- 1,010 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
	'NAME'		=> 'GD::Graph3d',
	'VERSION_FROM'	=> 'lib/GD/Graph3d.pm', # finds $VERSION

	($] >= 5.005 ?
		('ABSTRACT'		=> 'Creates 3D charts with GD::Graph and GD.',
		 'AUTHOR'		=> 'Jeremy Wadsack <dgsupport@wadsack-allen.com>',
		) : ()
	),

	'PREREQ_PM'			=> { 
		'GD' => '1.18', 
		'GD::Graph' => '1.30',
		'GD::Text::Align' => undef,
	},

);


print <<END;

The test suite for GD::Graph3d is very basic. It makes sure that 
graphs objects can be contructed and plotted. If you want to verify 
that the plots are accurate, you should run the 'visual-test.pl' 
script in the t/ directory. To do this you may need to look at 
images in a web browser or graphics program and visually verify 
that they are substantially similar.

Otherwise continue on with the standard 'make', 'make test', 
'make install' procedure.

END