Files
haikuports/app-dicts/aspell_en/aspell_en-2020.12.07~0.recipe
2023-05-14 20:52:58 +02:00

44 lines
886 B
Bash

SUMMARY="English dictionary for aspell program/library"
DESCRIPTION="English (US, British, Canadian) language dictionary for the GNU \
Aspell program, an open source spell checker."
HOMEPAGE="http://aspell.net/"
COPYRIGHT="2000-2017 Kevin Atkinson"
LICENSE="GNU GPL v2"
REVISION="1"
SOURCE_URI="https://ftpmirror.gnu.org/aspell/dict/en/aspell6-en-${portVersion/\~/-}.tar.bz2"
CHECKSUM_SHA256="4c8f734a28a088b88bb6481fcf972d0b2c3dc8da944f7673283ce487eac49fb3"
SOURCE_DIR="aspell6-en-${portVersion/\~/-}"
ARCHITECTURES="any"
PROVIDES="
aspell_en = $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
}