~ruther/guix-local

d57427af57e164f93ffb6d077917e64a6b2ee55c — Marius Bakke 3 years ago d464028
gnu: libstemmer: Update to 2.2.0.

* gnu/packages/language.scm (libstemmer): Update to 2.2.0.
[source](uri): Use new versioned URL.
[arguments]: Remove obsolete step and trailing #t.
1 files changed, 5 insertions(+), 6 deletions(-)

M gnu/packages/language.scm
M gnu/packages/language.scm => gnu/packages/language.scm +5 -6
@@ 425,13 425,14 @@ specifications in the document.")
(define-public libstemmer
  (package
    (name "libstemmer")
    (version "2.0.0")
    (version "2.2.0")
    (source
     (origin
       (method url-fetch)
       (uri "https://snowballstem.org/dist/libstemmer_c.tgz")
       (uri (string-append "https://snowballstem.org/dist/libstemmer_c-"
                           version ".tar.gz"))
       (sha256
        (base32 "1z2xvrjsaaypc04lwz7dg8mjm5cq1gzmn0l544pn6y2ll3r7ckh5"))))
        (base32 "1hvphdl8pfq1q3cgh7bshsabsxc7id6wswrqilplwszkkkzdjhdr"))))
    (build-system gnu-build-system)
    (arguments
     `(#:tests? #f                      ; No tests exist


@@ 450,9 451,7 @@ specifications in the document.")
                    (out-lib (string-append out "/lib")))
               (install-file "stemwords" out-bin)
               (install-file "include/libstemmer.h" out-include)
               (rename-file "libstemmer.o" "libstemmer.a")
               (install-file "libstemmer.a" out-lib)
               #t))))))
               (install-file "libstemmer.a" out-lib)))))))
    (synopsis "Stemming Library")
    (description "LibStemmer provides stemming library, supporting several
languages.")