mroonga.cfg 1.22 KB
Newer Older
1 2 3 4 5 6 7
# mroonga - a MySQL storage engine using full-text search engine groonga
# http://mroonga.github.com/
# http://groonga.org/

[buildout]
parts =
  mroonga
Kazuhiko Shiozaki's avatar
Kazuhiko Shiozaki committed
8
extends =
9 10
  mariadb.cfg
  pkgconfig.cfg
11 12 13

[groonga]
recipe = hexagonit.recipe.cmmi
14 15
url = http://groonga.org/files/groonga/groonga-1.0.6.tar.gz
md5sum = a278e72801a68acf374cbc309d73ba34
16 17 18
configure-options =
  --without-mecab

19 20 21 22 23 24 25
[mroonga-mariadb-patch]
recipe = hexagonit.recipe.download
url = http://www.nexedi.org/static/patches/${:filename}
md5sum = da2457b9f8006cddb279a165128479e5
filename = groonga-storage-engine-0.4.mariadb.patch
download-only = true

26 27
[mroonga]
recipe = hexagonit.recipe.cmmi
28 29 30 31 32
url = http://github.com/downloads/mroonga/mroonga/groonga-storage-engine-0.4.tar.gz
md5sum = eb39ddaebb5a295f103bb1f66d5b33da
patch-options = -p1
patches =
  ${mroonga-mariadb-patch:location}/${mroonga-mariadb-patch:filename}
33
configure-options =
34 35
  --with-mysql-source=${mariadb:location}__compile__/mariadb-${mariadb:version}
  --with-mysql-config=${mariadb:location}/bin/mysql_config
36
environment =
37 38 39 40
  PATH=${groonga:location}/bin:${pkgconfig:location}/bin:%(PATH)s
  CPPFLAGS=-I${groonga:location}/include/groonga
  LDFLAGS=-L${groonga:location}/lib
  PKG_CONFIG_PATH=${groonga:location}/lib/pkgconfig