diff options
Diffstat (limited to 'clucene/clucene_0.8.9.oe')
-rw-r--r-- | clucene/clucene_0.8.9.oe | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/clucene/clucene_0.8.9.oe b/clucene/clucene_0.8.9.oe index e69de29bb2..d2cf9c0237 100644 --- a/clucene/clucene_0.8.9.oe +++ b/clucene/clucene_0.8.9.oe @@ -0,0 +1,20 @@ +DESCRIPTION = "CLucene is a C++ port of Lucene: the high-performance, full-featured text search engine written in Java." +SECTION = "libs" +PRIORITY = "optional" +DEPENDS = "virtual/libc" + +SRC_URI = "${SOURCEFORGE_MIRROR}/clucene/clucene-${PV}-src.tar.gz" +S = "${WORKDIR}/" + +inherit autotools libtool + +do_stage() { + oe_libinstall -C src libclucene ${STAGING_LIBDIR} + cd src + headers=`find CLucene -name "*.h"` + for f in $headers + do + install -d ${STAGING_INCDIR}/`dirname $f` + install -m 0644 $f ${STAGING_INCDIR}/$f + done +} |