-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathINSTALL
More file actions
16 lines (13 loc) · 701 Bytes
/
INSTALL
File metadata and controls
16 lines (13 loc) · 701 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
==Prerequisites==
Boost (libboost-dev + libboost-program-options-dev), ncurses (libncurses-dev).
"make" creates an executable file called "bastet", that's all you need to run the program.
Optionally, for system-wide high scores, you may want to create an empty "/var/games/bastet.scores2" file, and make sure that is writable to the bastet executable.
Simplest way to create system-wide high scores under any Linux distro that has a "games" groups:
cd the-directory-in-which-you-found-this-file
make
cp bastet /usr/local/bin
chgrp games /usr/local/bin/bastet
chmod g+s /usr/local/bin/bastet
touch /var/games/bastet.scores2
chgrp games /var/games/bastet.scores2
chmod 664 /var/games/bastet.scores2