• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/H03-May-2022-28,33420,951

src/H03-May-2022-187,648112,103

AUTHORSH A D03-May-20224.1 KiB4936

COPYINGH A D03-May-20227.2 KiB162159

ChangeLogH A D03-May-202286 KiB2,0721,782

INSTALLH A D03-May-202211.1 KiB292219

Makefile.amH A D03-May-2022560 2717

Makefile.inH A D03-May-2022235.5 KiB2,9562,668

READMEH A D03-May-20221.5 KiB4732

aclocal.m4H A D03-May-202242.1 KiB1,1821,072

compileH A D03-May-20227.2 KiB348258

config.guessH A D03-May-202247.3 KiB1,6681,457

config.subH A D03-May-202230.9 KiB1,7941,637

configureH A D03-May-2022229 KiB8,1646,807

configure.acH A D03-May-202211.4 KiB353315

depcompH A D03-May-202223 KiB792502

install-shH A D03-May-202214.8 KiB509329

mangband.cfgH A D03-May-20227.8 KiB22136

missingH A D03-May-20226.7 KiB216143

README

1BUILDING
2--------
3
4 mangband and mangclient use a generic autotools build process.
5 See the INSTALL file for more information.
6
7 Basically, just run `./configure; make; make install`.
8
9 If you're building from the git repository, you'll have to generate
10 the `./configure` script first, by running `./autogen.sh`.
11
12 Please note, that mangclient can be compiled with several
13 different display frontends, which may or may not conflict
14 with each other. In addition, we support some weird configurations
15 and build options. Please run `./configure --help` to see
16 the full list of available features.
17
18 For additional hints regarding your specific platform (Windows,
19 OSX), please see the developer Wiki:
20
21	https://github.com/mangband/mangband/wiki
22
23RUNNING
24-------
25
26 Both mangband and mangclient binaries rely on "lib dir" - a directory
27 with all the game data.
28
29 First, they'll look for the ANGBAND_PATH environment variable,
30 then they'll try the PKGDATADIR constant, then the directories
31 specified in config files (.mangrc and mangband.cfg).
32
33 ANGBAND_PATH can be used to select any directory in this manner:
34
35	ANGBAND_PATH=./lib ./mangband
36	ANGBAND_PATH=./lib ./mangclient
37
38 Config file directives are "LibDir" in "$HOME/.mangrc" (for client)
39 and "EDIT_DIR", "DATA_DIR", "SAVE_DIR", "BONE_DIR", "HELP_DIR" in
40 "mangband.cfg" (for server). Those overwrite any other paths.
41
42 PKGDATADIR is set during the `./configure` step, and defaults to
43 something system-specific like "/usr/local/games/mangband". To
44 adjust it, the --datadir option can be used:
45
46	./configure --datadir=$PWD/lib
47