mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-27 05:50:56 -04:00
15 lines
211 B
Bash
15 lines
211 B
Bash
#!/bin/sh
|
|
|
|
PROGRAM="$0"
|
|
DATADIR="%%DATADIR%%"
|
|
DIVX_SKIN_DIR=${DATADIR}/Skins
|
|
|
|
export DIVX_SKIN_DIR
|
|
|
|
if [ -f ~/.divxPlayer/DivXPlayer.dbf ]
|
|
then
|
|
rm -f ~/.divxPlayer/DivXPlayer.dbf
|
|
fi
|
|
|
|
exec ${PROGRAM}.bin "${@}"
|