mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 14:38:51 +02:00
45 lines
998 B
Bash
45 lines
998 B
Bash
SUMMARY="Italian dictionary for aspell program/library"
|
|
DESCRIPTION="Italian language dictionary for the GNU Aspell program, an open \
|
|
source spell checker."
|
|
HOMEPAGE="http://aspell.net/"
|
|
COPYRIGHT="2003-2005 Gianluca Turconi & Davide Prina"
|
|
LICENSE="GNU GPL v2"
|
|
REVISION="1"
|
|
ASPELL_IT_VERSION=`echo $portVersion | sed 's/\_/-/g'`
|
|
SOURCE_URI="https://sourceforge.net/projects/linguistico/files/Dizionario%20italiano%20per%20Aspell/$ASPELL_IT_VERSION/aspell6-it-$ASPELL_IT_VERSION.tar.bz2"
|
|
CHECKSUM_SHA256="16ef0df30158e5d083d6b4f32ccc976614dfd4f5667db5e2cd972e3962bcde34"
|
|
SOURCE_DIR="aspell6-it-$ASPELL_IT_VERSION"
|
|
|
|
ARCHITECTURES="any"
|
|
|
|
PROVIDES="
|
|
aspell_it = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
aspell >= 0.60
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
devel:libaspell
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
haiku_devel
|
|
cmd:basename
|
|
cmd:make
|
|
cmd:prezip_bin
|
|
cmd:which
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
./configure
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
spellDir=$dataDir/$(basename $(aspell dump config dict-dir))
|
|
make dictdir=$spellDir datadir=$spellDir install
|
|
}
|