File: INSTALL

package info (click to toggle)
libgraph-easy-perl 0.76-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster, stretch
  • size: 4,264 kB
  • ctags: 718
  • sloc: perl: 23,869; makefile: 7
file content (73 lines) | stat: -rw-r--r-- 1,413 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73

=pod

=head1 Graph-Easy

I<Note:> This package was formerly known as Graph::Simple.

=head1 INSTALLATION

=head2 Linux, Unix, and similar systems:

To install this module type the following:

Untar the package:

	tar -xzf Graph-Easy-x.xx.tar.gz

where x.xx is the current revision. Then change into the directory:

	chdir Graph-Easy-x.xx/

Proceed with creating the makefile and running the test suite:

        perl Makefile.PL
        make test

If all tests pass, install the package as root user:

        sudo make install

=head2 Windows

You need two things under Windows:

=over 2

=item Perl

You can get it from ActiveState:

http://activestate.com/store/activeperl/download

=item nmake

See here for how to get and install nmake:

http://johnbokma.com/perl/make-for-windows.html

=back

After installing C<Perl> and C<nmake>, you can install Graph::Easy normally, just replacing
C<make> with C<nmake> in the install instructions above:

	perl Makefile.PL
	nmake
	nmake test
	nmake install

=head1 SEE ALSO

You also might want to install the following packages from CPAN:

	Graph::Easy::As_svg	provide SVG (Scalable Vector Graphics) output
	Graph::Easy::Manual	comprehensive manual in POD and HTML

=head1 AUTHOR

Copyright (C) 2004 - 2007 by Tels L<http://bloodgate.com/perl/>

This library is free software; you can redistribute it and/or modify
it under the same terms of the GPL version 2.

=cut