diff options
author | liqa <wgrr@thereddoors.online> | 2016-07-22 13:22:29 -0300 |
---|---|---|
committer | Carlo Landmeter <clandmeter@gmail.com> | 2016-08-02 11:57:09 +0200 |
commit | d33108e2c7d12ebb074dc406677d602020f48b5d (patch) | |
tree | 8e81204d60463c678f4b7cb2636852c579547558 /main | |
parent | 50d3f9a02bd5f9c4c442d65dd0bf673be249ad26 (diff) | |
download | aports-d33108e2c7d12ebb074dc406677d602020f48b5d.tar.bz2 aports-d33108e2c7d12ebb074dc406677d602020f48b5d.tar.xz |
main/hunspell: build with ncurses and readline
So that it can be used as a stand-alone command line spell checker
Diffstat (limited to 'main')
-rw-r--r-- | main/hunspell/APKBUILD | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/main/hunspell/APKBUILD b/main/hunspell/APKBUILD index 412a6c9826..1fc8ff900d 100644 --- a/main/hunspell/APKBUILD +++ b/main/hunspell/APKBUILD @@ -1,14 +1,14 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=hunspell pkgver=1.3.4 -pkgrel=0 +pkgrel=1 pkgdesc="Spell checker and morphological analyzer library and program" url="http://hunspell.github.io/" arch="all" license="GPL2+ LGPL2+ MPL 1.1" subpackages="$pkgname-dev $pkgname-doc $pkgname-lang" depends="" -makedepends="gettext-dev" +makedepends="gettext-dev ncurses-dev readline-dev" source="$pkgname-$pkgver.tar.gz::https://github.com/hunspell/hunspell/archive/v$pkgver.tar.gz " @@ -28,6 +28,8 @@ build() { --build=$CBUILD \ --host=$CHOST \ --prefix=/usr \ + --with-ui \ + --with-readline \ --disable-static \ --without-included-gettext \ || return 1 |