File: INSTALL.im

package info (click to toggle)
c%2B%2B-annotations 9.9.1-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 9,096 kB
  • ctags: 2,682
  • sloc: cpp: 15,527; makefile: 1,626; ansic: 165; sh: 115; perl: 90
file content (26 lines) | stat: -rw-r--r-- 861 bytes parent folder | download | duplicates (5)
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
string BASE;

    // BASE=is the directory below which ALL yodl files will be stored.

    // For an operational non-Debian installation, you probably must be
    // `root', and BASE "/usr" or BASE "/usr/local" is suggested (see
    // below). `BASE' itself is not used outside of this file, so feel free to
    // define BIN, SKEL, MAN and DOC (below) in any which way you like.

string DOC;
    // DOC is the directory in which all standard documentation will be stored
    // in this directory the non-development related information is stored. It
    // is not used if not defined (or defined empty)

string MAN;
    // MAN is the directory in which the manual pages will be stored
    // They are stored below man7


void setLocations()
{
    BASE  = "/usr";

    DOC  =      BASE + "/share/doc/cpp-annotations";
    MAN  =      BASE + "/share/man";    
}