diff options
author | Jacob Janzen <jjanzenn@proton.me> | 2024-04-09 21:05:01 -0500 |
---|---|---|
committer | Jacob Janzen <jjanzenn@proton.me> | 2024-04-09 21:05:01 -0500 |
commit | 09fb0f0445571e0c1df1243725b5a018c54ae69f (patch) | |
tree | 0aa0ef1ccf18a13467cb3c54cef1baef046b0286 | |
parent | 3cf8438856230a7c4ff89816534854427f035b4a (diff) |
move to markdown readme
-rw-r--r-- | README.md (renamed from README.org) | 35 |
1 files changed, 19 insertions, 16 deletions
@@ -1,46 +1,49 @@ -#+title: 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. +# URLG (Untitled Rogue-Like Game) -* Features Implemented +## 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 +## Building and Installing + +### Release Version The application can be installed on any Unix system by downloading a release and running -#+begin_src sh + +``` sh tar xzf urlg-<version>.tar.gz cd urlg-<version> ./configure && make make install # run as root -#+end_src +``` and uninstalled with -#+begin_src sh +``` make uninstall # run as root -#+end_src +``` 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. +The game can then be run as `urlg` in your terminal. -** Development Version +### 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 -#+begin_src sh +``` sh autoreconf --install ./configure make make install # run as root -#+end_src +``` and uninstalled with -#+begin_src sh +``` sh make uninstall # run as root -#+end_src +``` |