MyMan is an unofficial, unlicensed clone of the original Pac-Man and Puckman and their sequels and imitators.
MyMan uses Ncurses to design the game environment. It is possible to play it on GNU/Linux, Windows, macOS and among others.
On Windows you will need the PDCurses library.
Example on systems that use APT as a package manager.
sudo apt install git build-essential make autotools-dev autoconf libncurses5-dev libncursesw5-dev
Clone, compile and test the version:
git clone https://github.com/kragen/myman
cd myman
sed -i 's/-lcurses/-ltinfo -lncurses/g' Makefile
make
./myman --version
To install:
sudo make install
Open the game by running only:
myman
If you haven’t installed it, run:
./myman
inside the folder where you compiled it!
C
, just press any directional key to startA
and eat the points: .
Ctrl + c
For more information, access the repository: https://github.com/kragen/myman and/or use help
:
myman --help
If you want to uninstall, inside the post-compiled and installed directory, run:
sudo make clean uninstall