.gitignore: Also ignore *-*.tar.
[ssic.git] / INSTALL
1 Dependencies
2 ------------
3
4 This package uses the following modules outside the Perl core:
5
6   * `CGI::SSI`
7
8 Basic Installation
9 ------------------
10
11 This software package uses Perl's `ExtUtils::MakeMaker` module to
12 generate a build system.
13
14 The `Makefile.PL` script configures the package to be built and
15 installed on the system and generates a makefile.
16
17 This package can be configured, built, and installed with the following
18 commands:
19
20     $ perl Makefile.PL
21     $ make
22     $ make install
23
24 Superuser privileges will probably be necessary to install the package
25 on the system.
26
27 Macros
28 ------
29
30 The macro `DESTDIR` affects the root directory into which `Makefile`
31 installs the package.  For example, you can install the package into a
32 filesystem hierarchy under a directory named `dest` in the current
33 directory by running `make DESTDIR=dest install`.
34
35 The macro `INSTALLDIRS` affects the set of directories into which
36 `Makefile` installs the package's files.  For example, you can install
37 the package into system directories by running `make INSTALLDIRS=vendor
38 install`.
39
40 For more information on available targets and macros, see the
41 documentation for `ExtUtils::MakeMaker`.
42
43 Copyright Information
44 ---------------------
45
46 Copyright (C) 2013  Patrick "P. J." McDermott
47
48 Copying and distribution of this file, with or without modification,
49 are permitted in any medium without royalty provided the copyright
50 notice and this notice are preserved.  This file is offered as-is,
51 without any warranty.