Files
haikuports/app-dicts/aspell_en/aspell_en-2016.06.26~0.recipe
2016-07-03 17:37:49 +00:00

44 lines
885 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-2016 Kevin Atkinson"
LICENSE="GNU GPL v2"
REVISION="1"
SOURCE_URI="http://ftpmirror.gnu.org/aspell/dict/en/aspell6-en-${portVersion/\~/-}.tar.bz2"
CHECKSUM_SHA256="61c3d8e9671c91930ba978975a68bd317e2b9a761c8bec3637f72d26b0d39fb2"
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:make
cmd:prezip_bin
cmd:which
cmd:basename
"
BUILD()
{
./configure
make
}
INSTALL()
{
spellDir=$dataDir/$(basename $(aspell dump config dict-dir))
make dictdir=$spellDir datadir=$spellDir install
}