diff options
-rw-r--r-- | user/enchant/APKBUILD | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/user/enchant/APKBUILD b/user/enchant/APKBUILD index daa149747..a09bd4291 100644 --- a/user/enchant/APKBUILD +++ b/user/enchant/APKBUILD @@ -1,15 +1,15 @@ # Maintainer: pkgname=enchant pkgver=1.6.1 -pkgrel=1 +pkgrel=2 pkgdesc="A wrapper library for generic spell checking" url="https://abiword.github.io/enchant/" arch="all" -options="!check" # We need to ship dictionaries before testing will work... license="LGPL-2.0+" subpackages="$pkgname-dev $pkgname-doc" depends="" makedepends="aspell-dev bash dbus-glib-dev file glib-dev hunspell-dev" +checkdepends="aspell-dict-en" source="https://github.com/AbiWord/enchant/releases/download/enchant-1-6-1/enchant-1.6.1.tar.gz hunspell-build-fix.patch" @@ -24,7 +24,7 @@ build() { } check() { - cd "$builddir" + cd "$builddir"/tests make check } |