f726abcf50
The only thing better than penguins and ice is penguins and golf.
14 lines
223 B
Bash
14 lines
223 B
Bash
#!/bin/sh
|
|
|
|
case "$2" in
|
|
PRE-INSTALL)
|
|
DATADIR=${PKG_PREFIX}/share/tuxracer_golf
|
|
mkdir ${DATADIR}
|
|
mkdir ${DATADIR}/common.old
|
|
cp ${PKG_PREFIX}/share/tuxracer/courses/common/*rgb \
|
|
${DATADIR}/common.old
|
|
;;
|
|
esac
|
|
|
|
exit 0
|