buildout.cfg 1.04 KB
Newer Older
1 2 3
# Sphinx - Open Source Search Server
# http://sphinxsearch.com/

4 5 6
[buildout]
parts = sphinx
extends =
Łukasz Nowak's avatar
Łukasz Nowak committed
7 8 9
  ../libexpat/buildout.cfg
  ../mariadb/buildout.cfg
  ../zlib/buildout.cfg
10 11 12

[sphinx-1.10-beta-snowball.patch]
recipe = hexagonit.recipe.download
13
url = ${:_profile_base_location_}/${:filename}
14 15 16 17 18 19 20
path = ${:filename}
md5sum = 65a5ee78bf27c030734674c018006287
download-only = true
filename = sphinx-1.10-beta-snowball.patch

[sphinx]
recipe = hexagonit.recipe.cmmi
21 22
url = http://sphinxsearch.com/files/sphinx-2.0.2-beta.tar.gz
md5sum = fafe0f1a71d0ded32404c067eba7d0b3
23
configure-options =
24
  --with-mysql=${mariadb:location}
25 26 27 28 29 30 31 32 33
  --with-libstemmer
  --with-iconv
  --without-pgsql
  --without-unixodbc
patch-options = -p1
patches =
  ${sphinx-1.10-beta-snowball.patch:location}/${sphinx-1.10-beta-snowball.patch:filename}
environment =
  CPPFLAGS=-I${zlib:location}/include -I${libexpat:location}/include
34
  LDFLAGS=-L${zlib:location}/lib -Wl,-rpath=${zlib:location}/lib -Wl,-rpath=${mariadb:location}/lib/mysql -L${libexpat:location}/lib -Wl,-rpath=${libexpat:location}/lib