1==Prerequisites==
2Boost (libboost-dev + libboost-program-options-dev), ncurses (libncurses-dev).
3
4"make" creates an executable file called "bastet", that's all you need to run the program.
5Optionally, 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.
6
7Simplest way to create system-wide high scores under any Linux distro that has a "games" groups:
8
9cd the-directory-in-which-you-found-this-file
10make
11cp bastet /usr/local/bin
12chgrp games /usr/local/bin/bastet
13chmod g+s /usr/local/bin/bastet
14touch /var/games/bastet.scores2
15chgrp games /var/games/bastet.scores2
16chmod 664 /var/games/bastet.scores2
17