Files
haikuports/app-dicts/aspell_pl/aspell_pl-6.0_20061121~0.recipe
fbrosson 44700fb58c aspell: bump en dictionary & add de, es, it, pl, pt_BR, pt_PT, ru. (#571)
* Bump aspell_en to 2016.01.19-0 and switch it to "any" arch.
* Do not use 2016.01.19_0 but 2016.01.19~0 (i.e. with a tilde instead
  of the underscore) in the name of the recipe in order to be able to
  define SOURCE_{URI,DIR} using "${portVersion/\~/-}", thus avoiding
  hard-coded version-related strings in the recipe.
* Remove from aspell_en's DESCRIPTION what's already in aspell's.
* Add: de (German), es (Spanish), it (Italian), pl (Polish), pt_BR
  (Brazilian Portuguese), pt_PT (Portuguese), ru (Russian).
2016-04-22 22:10:44 +00:00

46 lines
890 B
Bash

SUMMARY="Polish dictionary for aspell program/library"
DESCRIPTION="Polish language dictionary for the GNU Aspell program, an open \
source spell checker."
HOMEPAGE="http://aspell.net/"
COPYRIGHT="2003-2006 Marek Futrega et al."
LICENSE="GNU GPL v2
GNU LGPL v2.1
MPL v1.1"
REVISION="1"
SOURCE_URI="http://ftpmirror.gnu.org/aspell/dict/pl/aspell6-pl-${portVersion/\~/-}.tar.bz2"
CHECKSUM_SHA256="017741fcb70a885d718c534160c9de06b03cc72f352879bd106be165e024574d"
SOURCE_DIR="aspell6-pl-${portVersion/\~/-}"
ARCHITECTURES="any"
PROVIDES="
aspell_pl = $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
}