increase dvbapp PR
[vuplus_openembedded] / recipes / xapian / xapian-quickstart.inc
1 DESCRIPTION = "Simplest possible indexer (from an older release of xapian)."
2 HOMEPAGE = "http://users.softlab.ece.ntua.gr/~ttsiod/buildWikipediaOffline.html"
3 PRIORITY = "optional"
4 LICENSE = "GPL"
5 DEPENDS = "xapian-core"
6
7 BINARY_NAME = ${@bb.data.getVar("PN",d,1).replace("xapian-","").replace("-native","")}
8 S = "${WORKDIR}"
9
10 SRC_URI = "http://users.softlab.ece.ntua.gr/~ttsiod/${BINARY_NAME}.cc"
11
12 do_compile() {
13         ${CXX} ${CXXLAGS} ${LDFLAGS} -I${STAGING_INCDIR_NATIVE} -lxapian -o ${BINARY_NAME} ${BINARY_NAME}.cc
14 }
15
16 do_install() {
17         install -d ${D}$
18         install -d ${D}${bindir}
19         install -m 0755 ${WORKDIR}/${BINARY_NAME} ${D}${bindir}/
20 }