diff options
Diffstat (limited to 'opie-kpacman/opie-kpacman_1.1.7.oe')
-rw-r--r-- | opie-kpacman/opie-kpacman_1.1.7.oe | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/opie-kpacman/opie-kpacman_1.1.7.oe b/opie-kpacman/opie-kpacman_1.1.7.oe index e69de29bb2..db92f83523 100644 --- a/opie-kpacman/opie-kpacman_1.1.7.oe +++ b/opie-kpacman/opie-kpacman_1.1.7.oe @@ -0,0 +1,41 @@ +DESCRIPTION = "Kpacman, the classical arcade game of Pacman" +SECTION = "opie/games" +PRIORITY = "optional" +MAINTAINER = "Team Opie <opie@handhelds.org>" +LICENSE = "GPL" + +APPNAME = "kpacman" +APPTYPE = "binary" + +TAG = "${@'v' + oe.data.getVar('PV',d,1).replace('.', '_')}" +SRC_URI = "${HANDHELDS_CVS};tag=${TAG};module=opie/noncore/games/kpacman \ + ${HANDHELDS_CVS};tag=${TAG};module=opie/pics \ + ${HANDHELDS_CVS};tag=${TAG};module=opie/share \ + ${HANDHELDS_CVS};tag=${TAG};module=opie/apps" + +S = "${WORKDIR}/${APPNAME}" + +inherit opie + +pkg_postinst() { +#!/bin/sh +if [ -n "$D" ]; then exit 1; fi + +if [ ! -f $HOME/Settings/kpacman.conf ] + exit 0 +then + cp /opt/QtPalmtop/share/kpacman/kpacman.conf $HOME/Settings/ +fi +} + +# FILES bin/kpacman apps/Games/kpacman.desktop pics/kpacman/kpacman.png share/kpacman +do_install() { + install -d ${D}${palmtopdir}/pics/${APPNAME}/ + install -m 0644 ${WORKDIR}/pics/${APPNAME}/*.png ${D}${palmtopdir}/pics/${APPNAME}/ + install -d ${D}${palmtopdir}/share/${APPNAME}/fonts + install -d ${D}${palmtopdir}/share/${APPNAME}/pics + install -m 0644 ${WORKDIR}/share/${APPNAME}/*.conf ${D}${palmtopdir}/share/${APPNAME}/ + install -m 0644 ${WORKDIR}/share/${APPNAME}/fonts/*.xbm ${D}${palmtopdir}/share/${APPNAME}/fonts/ + install -m 0644 ${WORKDIR}/share/${APPNAME}/pics/*.xpm ${D}${palmtopdir}/share/${APPNAME}/pics/ +} + |