Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/oitofelix/mininim
The Advanced Prince of Persia Engine (a childhood dream)
https://github.com/oitofelix/mininim
game gnu linux macosx mininim prince-of-persia windows
Last synced: 20 days ago
JSON representation
The Advanced Prince of Persia Engine (a childhood dream)
- Host: GitHub
- URL: https://github.com/oitofelix/mininim
- Owner: oitofelix
- License: gpl-3.0
- Created: 2015-10-27T05:37:24.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2020-12-31T15:45:31.000Z (almost 4 years ago)
- Last Synced: 2024-08-01T03:27:19.497Z (4 months ago)
- Topics: game, gnu, linux, macosx, mininim, prince-of-persia, windows
- Language: C
- Homepage: http://oitofelix.github.io/mininim/
- Size: 32.5 MB
- Stars: 133
- Watchers: 20
- Forks: 11
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
# MININIM
**The Advanced Prince of Persia Engine (a childhood dream)**![MININIM](http://oitofelix.github.io/mininim/mininim.png)
- [Homepage](http://oitofelix.github.io/mininim/)
- [Forum](http://forum.princed.org/viewforum.php?f=127)
- **IRC:** irc://irc.freenode.net/mininim
- [VCS](http://github.com/oitofelix/mininim/)## Building
To build MININIM from this Git repository you'll need to have
installed in your machine **Automake**, **Autoconf**, **GCC**, **GNU
Make**, **gnulib**, **CMake**, **Lua 5.0**, **Readline** and
[MININIM's fork of **Allegro**](https://github.com/oitofelix/allegro5).
For apt based GNU/Linux distributions (Ubuntu, Debian, ...):```
sudo apt-get remove liballegro5-dev liballegro-image5-dev \
liballegro-audio5-dev liballegro-acodec5-dev liballegro-dialog5-dev
sudo apt-get install automake autoconf gcc make gnulib cmake lua50 \
liblua50-dev liblualib50-dev libreadline-dev
sudo apt-get build-dep allegro5
git clone https://github.com/oitofelix/allegro5.git
cd allegro5
cmake
make
sudo make install
cd ..
git clone https://github.com/oitofelix/mininim.git
cd mininim
./bootstrap
./configure LUA_LIB="-llua50 -llualib50"
make
./mininim
```To build MININIM's documentation you'll need **Texinfo**, **TeX Live**
and **help2man**. For apt based distributions:```
sudo apt-get install texinfo texlive texlive-generic-recommended \
help2man
cd mininim/doc
make mininim.pdf
```