aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/sphinx-search/sphinx_0.9.8.bb
blob: addc4a65d5746a8a88b7e317ee37d83f19b221dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
DESCRIPTION = "The Sphinx Fulltext Indexer"
HOMEPAGE = "http://www.sphinxsearch.com/"
LICENSE = "GPL"
PRIORITY = "optional"
DEPENDS = "expat"

SRC_URI = "\
  http://www.sphinxsearch.com/downloads/sphinx-${PV}.tar.gz \
  http://snowball.tartarus.org/dist/libstemmer_c.tgz \
"

inherit autotools

EXTRA_OECONF = "\
  --without-mysql \
  --with-libstemmer \
"

# miscompiles w/ O2
FULL_OPTIMIZATION_arm = "-O1"

inherit autotools

do_configure_prepend() {
	mv ${WORKDIR}/libstemmer_c/* libstemmer_c/
}