[arch-commits] Commit in nuspell/repos (testing-x86_64 testing-x86_64/PKGBUILD)
Andreas Radke
andyrtr at archlinux.org
Mon Nov 2 19:13:30 UTC 2020
Date: Monday, November 2, 2020 @ 19:13:29
Author: andyrtr
Revision: 399177
archrelease: copy trunk to testing-x86_64
Added:
nuspell/repos/testing-x86_64/
nuspell/repos/testing-x86_64/PKGBUILD
(from rev 399176, nuspell/trunk/PKGBUILD)
----------+
PKGBUILD | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
Copied: nuspell/repos/testing-x86_64/PKGBUILD (from rev 399176, nuspell/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-11-02 19:13:29 UTC (rev 399177)
@@ -0,0 +1,38 @@
+# Maintainer: AndyRTR <andyrtr at archlinux.org>
+# Conributor: Mélanie Chauvel (ariasuni) <perso at hack-libre dot org>
+
+pkgname=nuspell
+pkgver=4.0.1
+pkgrel=1
+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' 'pandoc')
+source=("https://github.com/nuspell/nuspell/archive/v${pkgver}.tar.gz")
+sha512sums=('122616fd24c2de35000ba12d680d3617e7fe97881d33febbcb106ce70d3bac356a00d90680a1bc8ee631ed532ace0f4b4f9fce4760a25b0f7fc1d60553e74528')
+
+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
+}
More information about the arch-commits
mailing list