31 lines
633 B
Markdown
31 lines
633 B
Markdown
# playscii
|
|
|
|
ascii art and animation program
|
|
|
|
## forked from jp labreton
|
|
|
|
- [jp.itch.io/playscii](https://jp.itch.io/playscii)
|
|
- [jp-lebreton/playscii](https://heptapod.host/jp-lebreton/playscii)
|
|
- i found this nice interview with him: [cheesetalks.net/jplebreton.php](https://cheesetalks.net/jplebreton.php)
|
|
|
|
## setup
|
|
|
|
requires libSDL2 and libSDL2_mixer installed on the system:
|
|
|
|
```sh
|
|
# fedora
|
|
sudo dnf install SDL2 SDL2_mixer
|
|
|
|
# debian/ubuntu
|
|
sudo apt install libsdl2-2.0-0 libsdl2-mixer-2.0-0
|
|
|
|
# mac
|
|
brew install sdl2 sdl2_mixer
|
|
```
|
|
|
|
then, with [uv](https://docs.astral.sh/uv/#installation) installed:
|
|
|
|
```sh
|
|
uv sync
|
|
just run
|
|
```
|