mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-08 21:00:05 +02:00
44 lines
830 B
Bash
44 lines
830 B
Bash
SUMMARY="Czech dictionary for aspell program/library"
|
|
DESCRIPTION="Czech dictionary for the GNU Aspell program, an open source \
|
|
spell checker."
|
|
HOMEPAGE="http://aspell.net/"
|
|
COPYRIGHT="2003-2009 Joan Moratinos"
|
|
LICENSE="GNU GPL v2"
|
|
REVISION="1"
|
|
SOURCE_URI="https://ftp.gnu.org/gnu/aspell/dict/cs/aspell6-cs-20040614-1.tar.bz2"
|
|
CHECKSUM_SHA256="01c091f907c2fa4dfa38305c2494bb80009407dfb76ead586ad724ae21913066"
|
|
SOURCE_DIR="aspell6-cs-20040614-1"
|
|
|
|
ARCHITECTURES="any"
|
|
|
|
PROVIDES="
|
|
aspell6_cs = $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
|
|
}
|