70b129d1ae
- Convert USE_GMAKE to USES - Add DESKTOP_ENTRIES - Improve wrapper script
12 lines
206 B
Bash
12 lines
206 B
Bash
#!/bin/sh
|
|
|
|
if [ -z "$XDG_CONFIG_HOME" ]; then
|
|
XDG_CONFIG_HOME=$HOME/.config
|
|
fi
|
|
|
|
DOTDIR="$XDG_CONFIG_HOME/Sea Defender"
|
|
|
|
mkdir -p "$DOTDIR"
|
|
cd "$DOTDIR" || exit 1
|
|
|
|
exec %%PREFIX%%/libexec/sea-defender "$@"
|