aboutsummaryrefslogtreecommitdiffstats
path: root/testing/nuspell
diff options
context:
space:
mode:
authorLeo <thinkabit.ukim@gmail.com>2020-02-28 05:03:14 -0300
committerLeo <thinkabit.ukim@gmail.com>2020-02-29 08:02:08 -0300
commit044e95d0d7cf82ff8cee27fa69a5bac8b023a990 (patch)
treedbe1cef75f9293749326280956f05a057453aca6 /testing/nuspell
parentb039cb3f9e64b9b64f3537d91b8de264cbe54a12 (diff)
downloadaports-044e95d0d7cf82ff8cee27fa69a5bac8b023a990.tar.bz2
aports-044e95d0d7cf82ff8cee27fa69a5bac8b023a990.tar.xz
community/nuspell: move from testing
Diffstat (limited to 'testing/nuspell')
-rw-r--r--testing/nuspell/APKBUILD37
1 files changed, 0 insertions, 37 deletions
diff --git a/testing/nuspell/APKBUILD b/testing/nuspell/APKBUILD
deleted file mode 100644
index d42540c8c9..0000000000
--- a/testing/nuspell/APKBUILD
+++ /dev/null
@@ -1,37 +0,0 @@
-# Contributor: Rasmus Thomsen <oss@cogitri.dev>
-# Maintainer: Rasmus Thomsen <oss@cogitri.dev>
-pkgname=nuspell
-pkgver=3.0.0
-pkgrel=2
-pkgdesc="Free and open source C++ spell checking library"
-url="https://nuspell.github.io/"
-arch="all"
-license="LGPL-3.0-or-later"
-makedepends="cmake icu-dev boost-dev ronn catch2"
-subpackages="$pkgname-dev $pkgname-doc"
-source="https://github.com/nuspell/nuspell/archive/v$pkgver/nuspell-$pkgver.tar.gz"
-
-build() {
- if [ "$CBUILD" != "$CHOST" ]; then
- CMAKE_CROSSOPTS="-DCMAKE_SYSTEM_NAME=Linux -DCMAKE_HOST_SYSTEM_NAME=Linux"
- fi
- cmake \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DCMAKE_INSTALL_LIBDIR=lib \
- -DBUILD_SHARED_LIBS=True \
- -DCMAKE_BUILD_TYPE=None \
- -DCMAKE_CXX_FLAGS="$CXXFLAGS" \
- -DCMAKE_C_FLAGS="$CFLAGS" \
- ${CMAKE_CROSSOPTS} .
- make
-}
-
-check() {
- CTEST_OUTPUT_ON_FAILURE=TRUE ctest
-}
-
-package() {
- make DESTDIR="$pkgdir" install
-}
-
-sha512sums="d9cd7dd276e2bca43dec3abaf11c5206695949b9fda8c9b86f2772cc7e8fa95bf17c685a2ef9ca87fe3c4f0b55f2fcb435bc21c187355f5e3fa35dcafab2c8c2 nuspell-3.0.0.tar.gz"