mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
ef76f9c4e3
The player must collect drifting garbage by navigating through the gravitational fields of planets and stars. A rough editor for planetary systems is provided too. WWW: http://spacejunk.sourceforge.net/
13 lines
172 B
Bash
13 lines
172 B
Bash
#!/bin/sh
|
|
|
|
DOTDIR=~/.spacejunk
|
|
|
|
mkdir -p $DOTDIR
|
|
cd $DOTDIR || exit 1
|
|
|
|
if [ ! -e config.txt ]; then
|
|
cp %%DATADIR%%/config.txt .
|
|
fi
|
|
|
|
exec %%PREFIX%%/libexec/spacejunk "$@"
|