mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
https://sites.google.com/site/broguegame/ Classic roguelike with streamlined game mechanics and tasteful visual design (community edition)
10 lines
136 B
Bash
Executable File
10 lines
136 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
userdir=${XDG_DATA_HOME:-$HOME/.local/share}/brogue
|
|
mkdir -p "$userdir"
|
|
|
|
cd "$userdir"
|
|
exec /usr/libexec/brogue "$@"
|