1SUMMARY="Italian dictionary for aspell program/library"
2DESCRIPTION="Italian language dictionary for the GNU Aspell program, an open \
3source spell checker."
4HOMEPAGE="http://aspell.net/"
5COPYRIGHT="2003-2005 Gianluca Turconi & Davide Prina"
6LICENSE="GNU GPL v2"
7REVISION="1"
8ASPELL_IT_VERSION=`echo $portVersion | sed 's/\_/-/g'`
9SOURCE_URI="https://sourceforge.net/projects/linguistico/files/Dizionario%20italiano%20per%20Aspell/$ASPELL_IT_VERSION/aspell6-it-$ASPELL_IT_VERSION.tar.bz2"
10CHECKSUM_SHA256="16ef0df30158e5d083d6b4f32ccc976614dfd4f5667db5e2cd972e3962bcde34"
11SOURCE_DIR="aspell6-it-$ASPELL_IT_VERSION"
12
13ARCHITECTURES="any"
14
15PROVIDES="
16	aspell_it = $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