summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <hrw@openembedded.org>2004-11-14 17:02:46 +0000
committerMarcin Juszkiewicz <hrw@openembedded.org>2004-11-14 17:02:46 +0000
commit6fc780f3199149d907d2d8bd1af5ce74ea7843be (patch)
tree5d72b4e955a6f5d68af41c76a8a967dadfd5c06b
parentc661b10c114a57a62735851c779a3973964c465b (diff)
zshopi: added dependency on sqlite 2
BKrev: 41978fb6-jz3Y1YBEgQL3P3J9i3sfQ
-rw-r--r--zshopi/zshopi_0.2.oe32
1 files changed, 32 insertions, 0 deletions
diff --git a/zshopi/zshopi_0.2.oe b/zshopi/zshopi_0.2.oe
index e69de29bb2..16445a4c06 100644
--- a/zshopi/zshopi_0.2.oe
+++ b/zshopi/zshopi_0.2.oe
@@ -0,0 +1,32 @@
+DESCRIPTION = "Shopping manager"
+SECTION = "opie/applications"
+DEPENDS = "sqlite"
+PRIORITY = "optional"
+LICENSE = "GPL"
+MAINTAINER = "Marcin Juszkiewicz <openembedded@hrw.one.pl>"
+HOMEPAGE = "http://www.lachner-net.de/"
+AUTHOR = "Bernd Lachner <dev@lachner-net.de>"
+APPTYPE = "binary"
+APPNAME = "zshopi"
+APPDESKTOP = "${WORKDIR}"
+
+SRC_URI = "http://www.lachner-net.de/Frames/Software/zshopi_0.2.tar.bz2 \
+file://zshopi.desktop \
+file://zshopi.png"
+
+S = "${WORKDIR}/${PN}_${PV}/${PN}/"
+
+inherit opie
+
+EXTRA_QMAKEVARS_POST = "DEFINES+=QTOPIA LIBS+=-lm LIBS+=-lsqlite LIBS+=-lqpe"
+OE_QMAKE_CXXFLAGS = "-fno-rtti ${CXXFLAGS}"
+export OE_QMAKE_LINK="${CXX}"
+
+do_configure_prepend() {
+ qmake -project
+}
+
+do_install() {
+ install -d ${D}/${palmtopdir}/pics/
+ install -m 0644 ${WORKDIR}/zshopi.png ${D}/${palmtopdir}/pics/
+}