mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
44 lines
885 B
Bash
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
|
|
}
|