xapian: initial commit of xapian-quickstartindex. Fixes 3712.
authorRolf Leggewie <oe-devel@rolf.leggewie.biz>
Thu, 31 Jan 2008 10:16:23 +0000 (10:16 +0000)
committerRolf Leggewie <oe-devel@rolf.leggewie.biz>
Thu, 31 Jan 2008 10:16:23 +0000 (10:16 +0000)
packages/xapian/xapian-quickstartindex_1.0.bb [new file with mode: 0644]

diff --git a/packages/xapian/xapian-quickstartindex_1.0.bb b/packages/xapian/xapian-quickstartindex_1.0.bb
new file mode 100644 (file)
index 0000000..6deff91
--- /dev/null
@@ -0,0 +1,18 @@
+DESCRIPTION = "Simplest possible indexer (from older release of xapian)"
+HOMEPAGE = "http://users.softlab.ece.ntua.gr/~ttsiod/buildWikipediaOffline.html"
+PRIORITY = "optional"
+LICENSE = "GPL"
+DEPENDS = "xapian-core"
+PR = "r0"
+
+SRC_URI = "http://users.softlab.ece.ntua.gr/~ttsiod/quickstartindex.cc"
+S = "${WORKDIR}"
+
+do_compile() {
+        ${CXX} ${CXXLAGS} ${LDFLAGS} -lxapian -o quickstartindex quickstartindex.cc
+}
+
+do_install() {
+        install -d ${D}${bindir}
+        install -m 0755 ${WORKDIR}/quickstartindex ${D}${bindir}/
+}