48 lines
1.9 KiB
Bash
48 lines
1.9 KiB
Bash
#!/usr/bin/bash
|
|
# JOBoRun : Jwm OpenBox Obarun RUNit
|
|
# Maintainer : Joe Bo Run <joborun@disroot.org>
|
|
# PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobextra/$pkgname"
|
|
# Website : https://pozol.eu
|
|
#-----------------------------------------| DESCRIPTION |---------------------------------------
|
|
|
|
pkgname=enchant-pure
|
|
_pkgname=enchant
|
|
pkgver=2.3.3
|
|
pkgrel=02
|
|
pkgdesc="A wrapper library for pure and generic spell checking for all languages, supporting Aspell and Myspell/Hunspell backend engines"
|
|
url="https://github.com/AbiWord/enchant"
|
|
arch=('x86_64')
|
|
depends=('aspell>=0.50.0' 'glib2' 'hunspell')
|
|
provides=("${_pkgname}" "libenchant-2.so")
|
|
conflicts=("${_pkgname}")
|
|
source=("https://github.com/AbiWord/enchant/releases/download/v${pkgver}/${_pkgname}-${pkgver}.tar.gz")
|
|
|
|
build() {
|
|
cd "${srcdir}/${_pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --enable-static=no --with-aspell=yes --with-hunspell=yes --with-voikko=no --with-hspell=no --with-zemberek=no --with-applespell=no
|
|
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${_pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
# installing some symlinks for compatibility with enchant-1
|
|
ln -s "enchant-2" "${pkgdir}/usr/bin/enchant"
|
|
ln -s "enchant-lsmod-2" "${pkgdir}/usr/bin/enchant-lsmod"
|
|
ln -s "enchant-2" "${pkgdir}/usr/include/enchant"
|
|
ln -s "enchant-2" "${pkgdir}/usr/lib/enchant"
|
|
ln -s "libenchant-2.so.${pkgver}" "${pkgdir}/usr/lib/libenchant.so.${pkgver}"
|
|
ln -s "libenchant-2.so.${pkgver}" "${pkgdir}/usr/lib/libenchant.so.2"
|
|
ln -s "libenchant-2.so.${pkgver}" "${pkgdir}/usr/lib/libenchant.so"
|
|
}
|
|
|
|
|
|
#---- license gpg-key sha256sums ----
|
|
|
|
license=('LGPL')
|
|
|
|
sha512sums=('c97764a8f219033b440cbfb820624f54993b19ba1f38b56f20336889304f753c7c513008bb92cd1424bfbf528c2d473f35bef93d9140063612e3a270fd000deb')
|
|
|
|
sha256sums=(3da12103f11cf49c3cf2fd2ce3017575c5321a489e5b9bfa81dd91ec413f3891) # enchant-2.3.3.tar.gz
|
|
|