add numptyphysics (ugly ugly build), an insanely cool crayon game
authorMichael Lauer <mickey@vanille-media.de>
Wed, 30 Jul 2008 16:25:11 +0000 (16:25 +0000)
committerMichael Lauer <mickey@vanille-media.de>
Wed, 30 Jul 2008 16:25:11 +0000 (16:25 +0000)
conf/distro/include/sane-srcrevs.inc
packages/numptyphysics/.mtn2git_empty [new file with mode: 0644]
packages/numptyphysics/numptyphysics_svn.bb [new file with mode: 0644]

index 4cc84b3..6eb26b9 100644 (file)
@@ -93,6 +93,7 @@ SRCREV_pn-neod ?= "4336"
 SRCREV_pn-netsurf ?= "3859"
 SRCREV_pn-networkmanager ?= "3202"
 SRCREV_pn-networkmanager-applet ?= "200"
+SRCREV_pn-numptyphysics = "45"
 SRCREV_pn-oh-puzzles ?= "22"
 SRCREV_pn-osb-browser ?= "125"
 SRCREV_pn-osb-jscore ?= "117"
diff --git a/packages/numptyphysics/.mtn2git_empty b/packages/numptyphysics/.mtn2git_empty
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/packages/numptyphysics/numptyphysics_svn.bb b/packages/numptyphysics/numptyphysics_svn.bb
new file mode 100644 (file)
index 0000000..976028b
--- /dev/null
@@ -0,0 +1,38 @@
+DESCRIPTION = "Numpty Physics is a drawing puzzle game in the spirit (and style?) \
+of Crayon Physics using the same excellent Box2D engine."
+DEPENDS = "virtual/libsdl libsdl-image"
+LICENSE = "GPL"
+HOMEPAGE = "http://numptyphysics.garage.maemo.org/"
+SECTION = "x11/games"
+PV = "0.2+svnr${SRCREV}"
+
+SRC_URI = "\
+  svn://garage.maemo.org/svn/${PN};module=trunk;proto=https \
+  http://wwwpub.zih.tu-dresden.de/~mkluge/numptyphysics_setup.tgz \
+"
+S = "${WORKDIR}/trunk"
+
+EXTRA_S = "${WORKDIR}/local/packages/numptyphysics"
+
+# what an ugly buildsystem... handcrafted Makefiles... back to the stoneage
+export CCOPTS = "${CFLAGS} -I Box2D/Include"
+export LDOPTS = "${LDFLAGS} -lSDL -lSDL_image"
+
+do_configure() {
+       for i in Config.h Makefile Game.cpp; do
+               install -m 0644 ${EXTRA_S}/$i ${S}
+       done
+}
+
+do_install() {
+        install -d ${D}${datadir}/numptyphysics
+        install -d ${D}${bindir}
+        install -d ${D}${datadir}/pixmaps
+        install -d ${D}${datadir}/applications
+        install -m 0755 ${S}/arm/Game ${D}${bindir}/numptyphysics
+        install -m 0644 ${EXTRA_S}/star.png ${D}${datadir}/pixmaps
+        install -m 0644 ${EXTRA_S}/numptyphysics.desktop ${D}/${datadir}/applications
+        cp -a ${EXTRA_S}/data/* ${D}/${datadir}/numptyphysics/
+}
+
+FILES_${PN} += "${datadir}"