blob: 5c242d8c08765813c06c8e36f3fe6a6193f702d1 (
plain)
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
53
54
|
# URLG (Untitled Rogue-Like Game)
## About
This is a simple Rogue-like game implemented in C with minimal use of libraries
(only `curses` and the C standard library as of right now). It is primarily a
place for me to experiment with ideas I have while procrastinating.
## Features Implemented
- TUI interface
- Basic movement
- Procedurally generated caves
- Basic entity-component system
## Building and Installing
### Release Version
The application can be installed on any Unix system by downloading a release and
running
``` sh
tar xzf urlg-<version>.tar.gz
cd urlg-<version>
./configure && make
make install # run as root
```
and uninstalled with
```sh
make uninstall # run as root
```
It is only available to be installed from source. I do not distribute
pre-compiled binaries.
The game can then be run as `urlg` in your terminal.
### Development Version
The development version of the software is can be installed from the =git=
repository if you have GNU Autotools installed with the following commands
``` sh
autoreconf --install
./configure
make
make install # run as root
```
and uninstalled with
``` sh
make uninstall # run as root
```
|