mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-03 05:28:53 +02:00
fi (Finnish), fr (French), sk (Slovak), sl (Slovenian), sr (Serbian)
and sv (Swedish). Remark: there are 2 families of aspell_* recipes:
those which have aspell6- in their SOURCE_{URI,DIR} (e.g. fi, sk, sr)
and the others, which don't have the 6 in aspell- (e.g. fr, sl, sv).
45 lines
916 B
Bash
45 lines
916 B
Bash
SUMMARY="French dictionary for aspell program/library"
|
|
DESCRIPTION="French dictionary for the GNU Aspell program, an open source \
|
|
spell checker."
|
|
HOMEPAGE="http://aspell.net/"
|
|
COPYRIGHT="2001-2002 Rémi Vanicat, GUTenberg association, Christophe Pythoud
|
|
2002-2003 Kevin Atkinson"
|
|
LICENSE="GNU GPL v2"
|
|
REVISION="1"
|
|
SOURCE_URI="http://ftpmirror.gnu.org/aspell/dict/fr/aspell-fr-${portVersion/\~/-}.tar.bz2"
|
|
CHECKSUM_SHA256="f9421047519d2af9a7a466e4336f6e6ea55206b356cd33c8bd18cb626bf2ce91"
|
|
SOURCE_DIR="aspell-fr-${portVersion/\~/-}"
|
|
|
|
ARCHITECTURES="any"
|
|
|
|
PROVIDES="
|
|
aspell_fr = $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
|
|
}
|