mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-05 06:27:37 +00:00
7b6541a57b
- Replace pkg-message instructions by a wrapper script - Cleanups [1]: PR: ports/97647 Submitted by: Martin Wilke <freebsd@unixfreunde.de>
11 lines
261 B
Bash
11 lines
261 B
Bash
#!/bin/sh
|
|
|
|
if ! [ -f $HOME/.editssrc ]; then
|
|
/usr/bin/install -m 644 %%DATADIR%%/editssrc $HOME/.editssrc
|
|
fi
|
|
if ! [ -f $HOME/.xpilot-shipshapes ]; then
|
|
/usr/bin/install -m 644 %%DATADIR%%/ships $HOME/.xpilot-shipshapes
|
|
fi
|
|
|
|
exec %%PREFIX%%/libexec/editss "$@"
|