2020-11-04 17:27:07 +00:00
|
|
|
# Maintainer: AndyRTR <andyrtr@archlinux.org>
|
|
|
|
# Conributor: Mélanie Chauvel (ariasuni) <perso at hack-libre dot org>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# - remove makedepend on pandoc
|
|
|
|
|
|
|
|
pkgname=nuspell
|
2020-11-22 17:34:49 +00:00
|
|
|
pkgver=4.1.0
|
2020-12-09 15:11:47 +00:00
|
|
|
pkgrel=2
|
2020-11-04 17:27:07 +00:00
|
|
|
pkgdesc='Fast and safe spellchecking C++ library'
|
|
|
|
arch=('x86_64')
|
|
|
|
url='https://nuspell.github.io/'
|
|
|
|
license=('LGPL3')
|
|
|
|
depends=('boost-libs' 'icu')
|
|
|
|
makedepends=('cmake' 'boost' 'catch2')
|
|
|
|
source=("https://github.com/nuspell/nuspell/archive/v${pkgver}.tar.gz")
|
2020-11-22 17:34:49 +00:00
|
|
|
sha512sums=('d0c01dd73fefd8b9c800e6419fe916e55a53b8b19f5848d3766cdcb50383fdcd9e9bb49362b5cea4d9d2d7fda21aed055f28cb47b006e2049b2a904355f7f9ed')
|
2020-11-04 17:27:07 +00:00
|
|
|
|
|
|
|
prepare() {
|
|
|
|
mkdir build
|
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd build
|
|
|
|
cmake ../${pkgbase}-${pkgver} \
|
|
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
|
|
-DCMAKE_INSTALL_LIBDIR=/usr/lib \
|
|
|
|
-DBUILD_SHARED_LIBS=ON
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
check() {
|
|
|
|
cd build
|
|
|
|
make test
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd build
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
}
|