# mininim **Repository Path**: flycloud2009_cloudlou/mininim ## Basic Information - **Project Name**: mininim - **Description**: The Advanced Prince of Persia Engine (a childhood dream) -波斯王子1 游戏的重制版,巴西程序员oitofelix 实现。原址 https://github.com/oitofelix/mininim - **Primary Language**: C - **License**: GPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-05-16 - **Last Updated**: 2025-05-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## 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 ```