blob: 587183e84958950396fda4f3838a66fe7428bbb2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
DESCRIPTION = "CLucene is a C++ port of Lucene: the high-performance, \
full-featured text search engine written in Java."
HOMEPAGE = "http://clucene.sf.net"
SECTION = "libs"
LICENSE = "LGPL"
DEPENDS = "libtool"
SRC_URI = "${SOURCEFORGE_MIRROR}/clucene/clucene-core-${PV}.tar.bz2"
inherit autotools
EXTRA_OECONF = "--disable-multithreading dps_static_const_type=2"
do_configure() {
gnu-configize
cp ${STAGING_DATADIR}/libtool/config.sub ${S}/config
oe_runconf
}
FILES_${PN}-dev += "${libdir}/CLucene"
SRC_URI[md5sum] = "ba1a8f764a2ca19c66ad907dddd88352"
SRC_URI[sha256sum] = "202ee45af747f18642ae0a088d7c4553521714a511a1a9ec99b8144cf9928317"
|