aboutsummaryrefslogblamecommitdiff
path: root/games/atomix/pkg-install
blob: 5f11d613d1c29d72b73f29691fdf744c59d1b929 (plain) (tree)
1
2
3
4
5
6
7
8
9
10


                                  
                                      

                          



                                                            


          
#!/bin/sh

if [ "$2" = "POST-INSTALL" ]; then
    mkdir -p ${PKG_PREFIX}/share/games
    SCORES="atomix.scores"
    for i in ${SCORES}; do
	if [ ! -f ${PKG_PREFIX}/share/games/${i} ]; then
	    touch -f ${PKG_PREFIX}/share/games/${i}
	    chown games:games ${PKG_PREFIX}/share/games/${i}
	    chmod 0664 ${PKG_PREFIX}/share/games/${i}
	fi
    done
fi