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
|
##---------------------------------------------------------------------------##
## File:
## install.cfg
## Description:
## This is a sample configuration file for install.me for
## non-interactive use. This allows you to install the program
## in batch mode. To invoke install.me in batch mode, just
## specify the configuration file on the command-line:
##
## perl install.me install.cfg
##
## This file is Perl code, and therefore, must follow Perl syntax
## rules:
##
## o Anything following a '#' character is ignored.
##
## o Strings values need to be enclosed in quotes.
##
## o If you need to use a backslash in a string value,
## it must be escaped with a backslash. Example:
##
## 'C:\\LIB\\FOO'.
##
## The same applies to the '$' character.
##
## o All statements must end with a semi-colon: ;
##
## o 'perl -c' can be used to veryify the syntax of the
## configuration file.
##
## Notes:
## o Paths specified in the configuration file should exist.
## install.me will not automatically create them as it does
## in interactive mode.
##
##---------------------------------------------------------------------------##
# Should executables be installed. 0 => NO, non-zero => YES.
#
$dobin = 1;
# Should libraries be installed. 0 => NO, non-zero => YES.
#
$dolib = 1;
# Should documentation be installed. 0 => NO, non-zero => YES.
#
$dodoc = 1;
# Location for executable. If using ms-dos, use something like
# 'C:\\BIN'.
#
$bindir = '/usr/local/bin';
# Location for libraries. If using ms-dos, use something like
# 'C:\\LIB\\FOO'.
#
$libdir = '/usr/local/lib/perlSGML';
# Location for documents. If using ms-dos, use something like
# 'C:\\DOC\\FOO'.
#
$docdir = '/usr/local/lib/perlSGML/doc';
# Location of perl executable. If using ms-dos, use something like
# 'C:\\BIN\\PERL.EXE'.
#
$perlprg = '/usr/local/bin/perl';
1; # DO NOT DELETE THIS LINE
|