guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

05/06: gnu: hunspell: Update to 1.6.1.


From: Tobias Geerinckx-Rice
Subject: 05/06: gnu: hunspell: Update to 1.6.1.
Date: Tue, 8 Aug 2017 02:05:22 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit a40af5d0ad707906815ffdd48bd2aec89b4cc4e9
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Tue Aug 8 05:12:53 2017 +0200

    gnu: hunspell: Update to 1.6.1.
    
    * gnu/packages/libreoffice.scm (hunspell): Update to 1.6.1.
    [native-inputs]: Add autoconf, automake, and libtool.
    [arguments]: Add ‘bootstrap’ phase.
---
 gnu/packages/libreoffice.scm | 15 +++++++++++++--
 1 file changed, 13 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/libreoffice.scm b/gnu/packages/libreoffice.scm
index a6f2667..5faa8db 100644
--- a/gnu/packages/libreoffice.scm
+++ b/gnu/packages/libreoffice.scm
@@ -4,6 +4,7 @@
 ;;; Copyright © 2016 Efraim Flashner <address@hidden>
 ;;; Copyright © 2017 Alex Griffin <address@hidden>
 ;;; Copyright © 2017 Thomas Danckaert <address@hidden>
+;;; Copyright © 2017 Tobias Geerinckx-Rice <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -695,18 +696,28 @@ Zoner Draw version 4 and 5.")
 (define-public hunspell
   (package
     (name "hunspell")
-    (version "1.5.4")
+    (version "1.6.1")
     (source
      (origin
       (method url-fetch)
       (uri (string-append "https://github.com/hunspell/hunspell/archive/v";
                           version ".tar.gz"))
       (sha256 (base32
-               "0ngwk18dwd8p5a5f20h2jlgrz9wbc1k189mmmprb2zmqwfi02b45"))
+               "0j9c20sj7bgd6f77193g1ihy8w905byk2gdhdc0r9dsh7irr7x9h"))
       (file-name (string-append name "-" version ".tar.gz"))))
     (build-system gnu-build-system)
+    (native-inputs
+     `(("autoconf" ,autoconf)
+       ("automake" ,automake)
+       ("libtool" ,libtool)))
     (inputs
      `(("perl" ,perl)))
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'bootstrap
+           (lambda _
+             (zero? (system* "autoreconf" "-vfi")))))))
     (home-page "https://hunspell.github.io/";)
     (synopsis "Spell checker")
     (description "Hunspell is a spell checker and morphological analyzer



reply via email to

[Prev in Thread] Current Thread [Next in Thread]