1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-30 05:40:06 +00:00
freebsd-ports/games/gweled/pkg-install
Joe Marcus Clarke 8e8f687de7 Add gweled, a GNOME version of the games "Bejeweled" or "Diamond Mine."
Submitted by:	James Earl <james@icionline.ca>
2003-12-31 17:58:45 +00:00

18 lines
438 B
Bash

#!/bin/sh
if [ -n "${PACKAGE_BUILDING}" ]; then
exit 0
fi
if [ "$2" = "POST-INSTALL" ]; then
mkdir -p ${PKG_PREFIX}/share/gnome/games
SCORES="gweled.easy.scores"
for i in ${SCORES}; do
if [ ! -f ${PKG_PREFIX}/share/gnome/games/${i} ]; then
touch -f ${PKG_PREFIX}/share/gnome/games/${i}
chown games:games ${PKG_PREFIX}/share/gnome/games/${i}
chmod 664 ${PKG_PREFIX}/share/gnome/games/${i}
fi
done
fi