mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-08 21:00:05 +02:00
45 lines
928 B
Bash
45 lines
928 B
Bash
SUMMARY="German dictionary for aspell program/library"
|
|
DESCRIPTION="German (and Swiss-German) language dictionary for the GNU Aspell \
|
|
program, an open source spell checker."
|
|
HOMEPAGE="http://aspell.net/"
|
|
COPYRIGHT="2002-2004 Björn Jacke"
|
|
LICENSE="GNU GPL v2"
|
|
REVISION="1"
|
|
ASPELL_DE_VERSION=`echo $portVersion | sed 's/\_/-/g'`
|
|
SOURCE_URI="https://ftp.gnu.org/gnu/aspell/dict/de/aspell6-de-$ASPELL_DE_VERSION.tar.bz2"
|
|
CHECKSUM_SHA256="c2125d1fafb1d4effbe6c88d4e9127db59da9ed92639c7cbaeae1b7337655571"
|
|
SOURCE_DIR="aspell6-de-$ASPELL_DE_VERSION"
|
|
|
|
ARCHITECTURES="any"
|
|
|
|
PROVIDES="
|
|
aspell_de = $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
|
|
}
|