blob: 362bea35e1b9b09de28dd7750a469d600006b9c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
DESCRIPTION = "CLucene is a C++ port of Lucene: the high-performance, full-featured text search engine written in Java."
SECTION = "libs"
PRIORITY = "optional"
SRC_URI = "${SOURCEFORGE_MIRROR}/clucene/clucene-${PV}-src.tar.gz"
S = "${WORKDIR}/"
inherit autotools
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
}
|