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