buildout.cfg 957 Bytes
Newer Older
1 2 3
[buildout]
parts =
  aspell
4
  aspell-en-dictonary
5

6
extends =
7
  ../ncurses/buildout.cfg
8
  ../perl/buildout.cfg
9

10 11 12 13 14 15 16
[aspell-common-dictionary]
location = ${buildout:parts-directory}/${:_buildout_section_name_}
recipe = plone.recipe.command
command = mkdir -p ${:location}
update-command = ${:command}
stop-on-error = yes

17
[aspell]
18
recipe = slapos.recipe.cmmi
19
revision = 1
20 21
url = http://ftp.gnu.org/gnu/aspell/aspell-0.60.6.1.tar.gz
md5sum = e66a9c9af6a60dc46134fdacf6ce97d7
Kazuhiko Shiozaki's avatar
Kazuhiko Shiozaki committed
22
environment =
23
  PATH=${perl:location}/bin:%(PATH)s
Kazuhiko Shiozaki's avatar
Kazuhiko Shiozaki committed
24 25
  CPPFLAGS=-I${ncurses:location}/include
  LDFLAGS=-L${ncurses:location}/lib -Wl,-rpath=${ncurses:location}/lib
26 27

[aspell-en-dictionary]
28
recipe = slapos.recipe.cmmi
29 30
url = ftp://ftp.gnu.org/gnu/aspell/dict/en/aspell6-en-7.1-0.tar.bz2
md5sum = beba5e8f3afd3ed1644653bb685b2dfb
31 32 33 34
configure-command = ./configure --vars ASPELL=${aspell:location}/bin/aspell PREZIP=${aspell:location}/bin/prezip-bin
depends =
  ${aspell:url}
  ${aspell:revision}