56 lines
1.6 KiB
Bash
56 lines
1.6 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
|
|
pkgver=2.3.3
|
|
pkgrel=02
|
|
pkgdesc="A wrapper library for generic spell checking"
|
|
arch=('x86_64')
|
|
url="https://abiword.github.io/enchant/"
|
|
depends=('glib2')
|
|
makedepends=('aspell' 'hunspell' 'hspell' 'nuspell' 'libvoikko')
|
|
checkdepends=('unittestpp')
|
|
optdepends=('aspell: for aspell based spell checking support'
|
|
'hunspell: for hunspell based spell checking support'
|
|
'libvoikko: for libvoikko based spell checking support'
|
|
'hspell: for hspell based spell checking support'
|
|
'nuspell: for nuspell based spell checking support')
|
|
provides=('libenchant-2.so') # enchant_voikko.so enchant_nuspell.so enchant_hunspell.so enchant_hspell.so enchant_aspell.so)
|
|
source=("https://github.com/AbiWord/enchant/releases/download/v$pkgver/enchant-$pkgver.tar.gz")
|
|
|
|
prepare() {
|
|
cd $pkgname-$pkgver
|
|
autoreconf -vfi
|
|
}
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
./configure --prefix=/usr \
|
|
--disable-static \
|
|
--enable-relocatable
|
|
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd $pkgname-$pkgver
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
#---- license gpg-key sha256sums ----
|
|
|
|
license=('LGPL')
|
|
|
|
sha256sums=(3da12103f11cf49c3cf2fd2ce3017575c5321a489e5b9bfa81dd91ec413f3891) # enchant-2.3.3.tar.gz
|
|
|
|
|
|
|