poky/meta/packages/puzzles/oh-puzzles_svn.bb
Richard Purdie 3483918a1c puzzles: Remove pixmaps references
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1464 311d38ba-8fff-0310-9ca6-ca027cbcb966
2007-04-10 15:02:46 +00:00

40 lines
831 B
BlitzBasic

DESCRIPTION = "Portable Puzzle Collection"
LICENSE = "MIT"
SECTION = "x11"
DEPENDS = "gtk+"
PV = "0.1+svn${SRCDATE}"
PR = "r2"
inherit autotools pkgconfig
SRC_URI = "svn://svn.o-hand.com/repos/;module=oh-puzzles;proto=http"
S = "${WORKDIR}/${PN}"
do_install_append () {
mv ${D}${bindir} ${D}/usr/games
install -d ${D}/${datadir}/applications/
cd ${D}/${prefix}/games
for prog in *; do
if [ -x $prog ]; then
echo "making ${D}/${datadir}/applications/$prog.desktop"
cat <<STOP > ${D}/${datadir}/applications/$prog.desktop
[Desktop Entry]
Encoding=UTF-8
Name=$prog
Exec=${prefix}/games/$prog
Icon=applications-games
Terminal=false
Type=Application
Categories=Game
StartupNotify=true
SingleInstance=true
STOP
fi
done
}
FILES_${PN} += "/usr/games/*"
FILES_${PN}-dbg += "/usr/games/.debug/*"