0
0
Fork 0
haikuports/app-text/hunspell/hunspell-1.7.0.recipe

93 lines
2.5 KiB
Bash

SUMMARY="Spellchecker, forked from myspell"
DESCRIPTION="Hunspell is a spell checker and morphological analyzer library \
and program designed for languages with rich morphology and complex word \
compounding or character encoding."
HOMEPAGE="https://hunspell.github.io/"
COPYRIGHT="2007-2016 Hunspell developers et al.
2002-2008 László Németh (Hunspell)
2001-2002 Kevin Hendricks (MySpell)"
LICENSE="GNU GPL v2
GNU LGPL v2.1
MPL v1.1"
REVISION="1"
SOURCE_URI="https://github.com/hunspell/hunspell/archive/v$portVersion.tar.gz"
CHECKSUM_SHA256="bb27b86eb910a8285407cf3ca33b62643a02798cf2eef468c0a74f6c3ee6bc8a"
SOURCE_FILENAME="hunspell-$portVersion.tar.gz"
PATCHES="hunspell-$portVersion.patchset"
ARCHITECTURES="all !x86_gcc2"
SECONDARY_ARCHITECTURES="x86"
PROVIDES="
$portName = $portVersion
cmd:affixcompress$secondaryArchSuffix = $portVersion
cmd:hunspell$secondaryArchSuffix = $portVersion
cmd:hunspell_analyze$secondaryArchSuffix = $portVersion
cmd:hunspell_chmorph$secondaryArchSuffix = $portVersion
cmd:hunspell_munch$secondaryArchSuffix = $portVersion
cmd:hunspell_unmunch$secondaryArchSuffix = $portVersion
cmd:hunzip$secondaryArchSuffix = $portVersion
cmd:hzip$secondaryArchSuffix = $portVersion
cmd:ispellaff2myspell$secondaryArchSuffix = $portVersion
cmd:makealias$secondaryArchSuffix = $portVersion
cmd:wordforms$secondaryArchSuffix = $portVersion
cmd:wordlist2hunspell$secondaryArchSuffix = $portVersion
lib:libhunspell_${portVersion%.*}$secondaryArchSuffix = 0.0.1 compat >= 0
"
REQUIRES="
haiku$secondaryArchSuffix
lib:libiconv$secondaryArchSuffix
lib:libintl$secondaryArchSuffix
lib:libz$secondaryArchSuffix
"
PROVIDES_devel="
hunspell${secondaryArchSuffix}_devel = $portVersion
devel:libhunspell_${portVersion%.*}$secondaryArchSuffix = 0.0.1 compat >= 0
"
REQUIRES_devel="
hunspell$secondaryArchSuffix == $portVersion base
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
devel:libiconv$secondaryArchSuffix
devel:libintl$secondaryArchSuffix
devel:libz$secondaryArchSuffix
"
BUILD_PREREQUIRES="
cmd:autoconf
cmd:gcc$secondaryArchSuffix
cmd:ld$secondaryArchSuffix
cmd:libtoolize$secondaryArchSuffix
cmd:make
"
BUILD()
{
autoreconf -fi
runConfigure ./configure
make $jobArgs
}
INSTALL()
{
make install
rm $libDir/*.la
# remove any existing (but empty) data/locale/*/LC_MESSAGES directory
rm -r $dataDir/locale
prepareInstalledDevelLibs libhunspell-${portVersion%.*}
fixPkgconfig
packageEntries devel \
$developDir
}
TEST()
{
make check
}