blob: d2cf9c023712492b07c96f66dc722de10f705050 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
}
|