1SUMMARY="Spanish dictionary for aspell program/library"
2DESCRIPTION="Spanish dictionary for the GNU Aspell program, an open source \
3spell checker."
4HOMEPAGE="http://aspell.net/"
5COPYRIGHT="1994-2010 Santiago Rodriguez and Jesus Carretero
6	2003-2010 Agustin Martin Domingo"
7LICENSE="GNU GPL v2"
8REVISION="1"
9SOURCE_URI="http://ftpmirror.gnu.org/aspell/dict/es/aspell6-es-${portVersion/\~/-}.tar.bz2"
10CHECKSUM_SHA256="ad367fa1e7069c72eb7ae37e4d39c30a44d32a6aa73cedccbd0d06a69018afcc"
11SOURCE_DIR="aspell6-es-${portVersion/\~/-}"
12
13ARCHITECTURES="any"
14
15PROVIDES="
16	aspell_es = $portVersion
17	"
18REQUIRES="
19	haiku
20	aspell >= 0.60
21	"
22
23BUILD_REQUIRES="
24	devel:libaspell
25	"
26BUILD_PREREQUIRES="
27	haiku_devel
28	cmd:basename
29	cmd:make
30	cmd:prezip_bin
31	cmd:which
32	"
33
34BUILD()
35{
36	./configure
37	make
38}
39
40INSTALL()
41{
42	spellDir=$dataDir/$(basename $(aspell dump config dict-dir))
43	make dictdir=$spellDir datadir=$spellDir install
44}
45