summaryrefslogtreecommitdiffstats
path: root/games/gweled/pkg-install
blob: 04fcca9ba5f7f0a5b538f1cd22530631c0f98975 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

if [ "$2" = "POST-INSTALL" ]; then
    mkdir -p ${PKG_PREFIX}/share/gnome/games
    SCORES="gweled.easy.scores gweled.timed.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 0664 ${PKG_PREFIX}/share/gnome/games/${i}
	fi
    done
fi
OpenPOWER on IntegriCloud