[arch-commits] Commit in hunspell/trunk (PKGBUILD)

Andreas Radke andyrtr at archlinux.org
Tue Feb 2 15:49:24 UTC 2016


    Date: Tuesday, February 2, 2016 @ 16:49:24
  Author: andyrtr
Revision: 258784

upgpkg: hunspell 1.3.4-1

upstream update 1.3.4; disable experimental stuff that breaks build in this release

Modified:
  hunspell/trunk/PKGBUILD

----------+
 PKGBUILD |   21 +++++++++++++--------
 1 file changed, 13 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2016-02-02 15:10:56 UTC (rev 258783)
+++ PKGBUILD	2016-02-02 15:49:24 UTC (rev 258784)
@@ -3,26 +3,31 @@
 # Contributor: Hussam Al-Tayeb <ht990332 at gmail.com>
 
 pkgname=hunspell
-pkgver=1.3.3
-pkgrel=3
+pkgver=1.3.4
+pkgrel=1
 pkgdesc="Spell checker and morphological analyzer library and program"
 arch=('i686' 'x86_64')
-url="http://hunspell.sourceforge.net/"
+url="http://hunspell.github.io/"
 license=('GPL' 'LGPL' 'MPL')
 depends=('gcc-libs' 'readline')
 optdepends=('perl: for ispellaff2myspell')
-source=(http://downloads.sourceforge.net/hunspell/hunspell-$pkgver.tar.gz)
-md5sums=('4967da60b23413604c9e563beacc63b4')
+source=(https://github.com/hunspell/hunspell/archive/v${pkgver}.tar.gz)
+md5sums=('423cff69e68c87ac11e4aa8462951954')
 
 build() {
-  cd "$srcdir/hunspell-$pkgver"
+  cd hunspell-$pkgver
   ./configure --prefix=/usr --disable-static \
-	--with-ui --with-readline --with-experimental
+	--with-ui --with-readline # --with-experimental breaks build in this release
   make
 }
 
+check() {
+  cd hunspell-$pkgver
+  make check
+}
+
 package() {
-  cd "$srcdir/hunspell-$pkgver"
+  cd hunspell-$pkgver
   make DESTDIR="$pkgdir" install
   
   # add generic hunspell.so for development and projects not using pkgconfig flags - FS#30592



More information about the arch-commits mailing list