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
|
Installation instructions.
If you are a happy Debian GNU/Linux user, please ignore all of the
following instructions except this very one: make sure the package
`dpkg-dev' is installed on your system and you can build and install
this program using debian/rules; for example type:
debian/rules binary
to build a .deb package in the parent of the source directory (you
have to be root for that to work); then you can install that with
`dpkg --install' as usual. (Of course you can also find a precompiled
binary version on ftp.debian.org and its mirrors.)
If you are not a Debian GNU/Linux user, please read on.
0. Since this is a Perl program, you will obviously need perl:
version 5.004 will do just fine.
1. To build the program type:
make
2. To install the dictionary and its man page type:
make install
This will install the files under /usr/local; if you wish to
install them in some other location (e.g. /usr) type something
like this, instead:
make prefix=/usr install
3. You may wish to compress the installed man page, since it is not
done by default.
4. You can clean the source directory, if you wish:
make clean
Local variables:
mode: indented-text
end:
|