aspell_* bump some packages (#8640)

This commit is contained in:
Schrijvers Luc
2023-05-14 20:52:58 +02:00
committed by GitHub
parent 328b8b89b9
commit a8a873fcf2
5 changed files with 221 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
SUMMARY="German dictionary for aspell program/library"
DESCRIPTION="German (and Swiss-German) language dictionary for the GNU Aspell \
program, an open source spell checker."
HOMEPAGE="http://aspell.net/"
COPYRIGHT="2002-2004 Björn Jacke"
LICENSE="GNU GPL v2"
REVISION="1"
ASPELL_DE_VERSION=`echo $portVersion | sed 's/\_/-/g'`
SOURCE_URI="https://ftp.gnu.org/gnu/aspell/dict/de/aspell6-de-$ASPELL_DE_VERSION.tar.bz2"
CHECKSUM_SHA256="c2125d1fafb1d4effbe6c88d4e9127db59da9ed92639c7cbaeae1b7337655571"
SOURCE_DIR="aspell6-de-$ASPELL_DE_VERSION"
ARCHITECTURES="any"
PROVIDES="
aspell_de = $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
}

View File

@@ -0,0 +1,43 @@
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-2017 Kevin Atkinson"
LICENSE="GNU GPL v2"
REVISION="1"
SOURCE_URI="https://ftpmirror.gnu.org/aspell/dict/en/aspell6-en-${portVersion/\~/-}.tar.bz2"
CHECKSUM_SHA256="4c8f734a28a088b88bb6481fcf972d0b2c3dc8da944f7673283ce487eac49fb3"
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: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
}

View File

@@ -0,0 +1,44 @@
SUMMARY="Italian dictionary for aspell program/library"
DESCRIPTION="Italian language dictionary for the GNU Aspell program, an open \
source spell checker."
HOMEPAGE="http://aspell.net/"
COPYRIGHT="2003-2005 Gianluca Turconi & Davide Prina"
LICENSE="GNU GPL v2"
REVISION="1"
ASPELL_IT_VERSION=`echo $portVersion | sed 's/\_/-/g'`
SOURCE_URI="https://sourceforge.net/projects/linguistico/files/Dizionario%20italiano%20per%20Aspell/$ASPELL_IT_VERSION/aspell6-it-$ASPELL_IT_VERSION.tar.bz2"
CHECKSUM_SHA256="16ef0df30158e5d083d6b4f32ccc976614dfd4f5667db5e2cd972e3962bcde34"
SOURCE_DIR="aspell6-it-$ASPELL_IT_VERSION"
ARCHITECTURES="any"
PROVIDES="
aspell_it = $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
}

View File

@@ -0,0 +1,44 @@
SUMMARY="Brazilian Portuguese dictionary for aspell program/library"
DESCRIPTION="Brazilian Portuguese language dictionary for the GNU Aspell \
program, an open source spell checker."
HOMEPAGE="http://aspell.net/"
COPYRIGHT="2006-2009 Leonardo Ferreira Fontenelle, Raimundo Santos Moura"
LICENSE="GNU GPL v2"
REVISION="1"
ASPELL_PT_BR_VERSION=`echo $portVersion | sed 's/\_/-/g'`
SOURCE_URI="https://ftp.gnu.org/gnu/aspell/dict/pt_BR/aspell6-pt_BR-$ASPELL_PT_BR_VERSION.tar.bz2"
CHECKSUM_SHA256="eb0d99db0b5d5c442133a88bddfe96dd252c0c3df3da36e9326c241dc4bc14f7"
SOURCE_DIR="aspell6-pt_BR-$ASPELL_PT_BR_VERSION"
ARCHITECTURES="any"
PROVIDES="
aspell_pt_br = $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
}

View File

@@ -0,0 +1,46 @@
SUMMARY="Slovak dictionary for aspell program/library"
DESCRIPTION="Slovak dictionary for the GNU Aspell program, an open source \
spell checker."
HOMEPAGE="http://aspell.net/"
COPYRIGHT="2002-2009 Zdenko Podobný
2008 Pavel Chalmovianský, Július Pastierik"
LICENSE="GNU LGPL v2.1
GNU GPL v2
MPL v1.1"
REVISION="1"
SOURCE_URI="https://spell.linux.sk/file_download/103/aspell6-sk-${portVersion/\~/-}.tar.bz2"
CHECKSUM_SHA256="afd5b490ed0025401e19dbb3ab4cd7a910d0ccf322c9c5f0d55104850db9e3d0"
SOURCE_DIR="aspell6-sk-${portVersion/\~/-}"
ARCHITECTURES="any"
PROVIDES="
aspell_sk = $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
}