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

..03-May-2022-

data/H06-Sep-2016-3,1872,809

m4/H06-Sep-2016-4,0303,757

misc/H06-Sep-2016-894814

po/H03-May-2022-13,26510,905

src/H06-Sep-2016-26,36219,690

ABOUT-NLSH A D06-Sep-201693.1 KiB1,3281,280

AUTHORSH A D06-Sep-2016559 3632

COPYINGH A D30-Jun-20166.4 KiB142109

ChangeLogH A D06-Sep-201659.8 KiB1,7521,138

Makefile.amH A D30-Jun-20161.6 KiB9287

Makefile.inH A D06-Sep-201627.9 KiB940842

NEWSH A D06-Sep-20167 KiB176158

READMEH A D18-Jun-2010396 106

README.installH A D06-Sep-20162.1 KiB8755

aclocal.m4H A D06-Sep-201642.9 KiB1,2001,092

autogen.shH A D11-May-201365 41

chromium-bsu-config.h.inH A D06-Sep-20167 KiB273185

compileH A D13-Feb-20167.2 KiB348258

config.guessH A D30-Apr-201642.7 KiB1,4551,262

config.rpathH A D06-Sep-201618 KiB673569

config.subH A D30-Apr-201635.3 KiB1,8161,678

configureH A D06-Sep-2016367.8 KiB13,07210,665

configure.acH A D06-Sep-201610.9 KiB338284

depcompH A D13-Feb-201623 KiB792502

install-shH A D13-Feb-201614.8 KiB509329

missingH A D13-Feb-20166.7 KiB216143

README

1Chromium B.S.U.
2
3Please read the README.install and INSTALL files for install instructions.
4
5Chromium B.S.U. is distributed under terms of the Clarified Artistic License.
6See the COPYING file for details. The sounds are distributed under the terms
7of the MIT/Expat license. See the data/wav/license.txt file for details.
8
9Please read the manual page, the FAQ and info pages for more information.
10

README.install

1Chromium B.S.U. Installation
2----------------------------
3
4Be sure to install the -dev or -devel packages of the prerequisites.
5
6Prerequisites
7------------------
8
9Graphics:        OpenGL and GLU (mesa for e.g.)
10
11Window & input:  SDL 1.1.6 or greater
12                 GLUT is an alternative
13
14Sound:           OpenAL and ALUT
15                 SDL Mixer is an alternative
16
17Image loading:   glpng
18                 SDL_image is an alternative but has rendering issues
19
20Text rendering:  GLC (QuesoGLC for e.g.)
21                 FTGL 2.1.3 or greater is an alternative
22
23Font:            Gothic Uralic bold recommended
24                 any TrueType font is an alternative
25
26OPTIONAL
27--------
28
29Building with SDL_image allows the game to set a window icon when using SDL.
30
31If you would like a translated interface you should build with gettext & GLC.
32
33The GLC text rendering backend supports using a different default font:
34
35./configure --with-font-name="Gothic Uralic"
36
37The FTGL text rendering backend is less flexible in its font searching.
38
39To make it more flexible you should either build with fontconfig support or
40specify a path to the desired font, this is useful for distributions where
41the package system can then depend on the desired font:
42
43./configure --with-font-path=/usr/share/fonts/truetype/uralic/gothub__.ttf
44
45Install
46---------------------
47
48./configure <options> && make && sudo make install
49
50You may also want to check the FAQ:
51
52http://chromium-bsu.sf.net/faq.html
53
54If you encounter any problems, please post a support request:
55
56https://sf.net/p/chromium-bsu/support
57
58Development version
59---------------------
60
61Prerequisites
62------------------
63
64Install these when building from the VCS:
65
66autoconf
67automake
68gettext
69pkg-config
70autoconf OpenGL macros provided by:
71  autoconf-archive < 20111221
72  autoconf-gl-macros
73  autoconf-archive >= 20130609
74
75Pre-build step
76------------------
77
78Run this command to recreate the build system:
79
80autoreconf --symlink --install --force
81
82Then you can build and install in the current directory:
83
84./configure --prefix $PWD/install
85make install
86export PATH=$PWD/install:$PATH
87