mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
gnu: libpinyin: Update to 2.2.0.
* gnu/packages/ibus.scm (libpinyin): Update to 2.2.0. [arguments]: Remove. [inputs]: Remove model. [native-inputs]: Remove autoconf, automake, and libtool.
This commit is contained in:
parent
7627705293
commit
8738c2b342
1 changed files with 8 additions and 30 deletions
|
@ -1,5 +1,5 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2015, 2016, 2017 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2015, 2016, 2017, 2018 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
|
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
|
||||||
;;; Copyright © 2016 Chris Marusich <cmmarusich@gmail.com>
|
;;; Copyright © 2016 Chris Marusich <cmmarusich@gmail.com>
|
||||||
;;; Copyright © 2017 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2017 Efraim Flashner <efraim@flashner.co.il>
|
||||||
|
@ -194,43 +194,21 @@ (define-public ibus-libpinyin
|
||||||
(define-public libpinyin
|
(define-public libpinyin
|
||||||
(package
|
(package
|
||||||
(name "libpinyin")
|
(name "libpinyin")
|
||||||
(version "2.1.91")
|
(version "2.2.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append "https://github.com/libpinyin/libpinyin/"
|
||||||
"https://github.com/libpinyin/libpinyin/archive/"
|
"releases/download/" version
|
||||||
version ".tar.gz"))
|
"/libpinyin-2.2.0.tar.gz"))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1yr4zyz3rwvmvj6bh8pc54hbp4rd2xk3g06y38z220fshx2l8pwf"))))
|
"1c4wxvcvjxvk23mcwqvsfsv4nhimx4kpjhabxa28gx1ih10l88gj"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
|
||||||
`(#:phases
|
|
||||||
(modify-phases %standard-phases
|
|
||||||
(add-before 'configure 'autogen
|
|
||||||
(lambda _ (zero? (system* "autoreconf" "-vif"))))
|
|
||||||
(add-after 'unpack 'unpack-model
|
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
|
||||||
(zero? (system* "tar" "-xvf"
|
|
||||||
(assoc-ref inputs "model")
|
|
||||||
"-C" "data")))))))
|
|
||||||
(inputs
|
(inputs
|
||||||
`(("glib" ,glib)
|
`(("glib" ,glib)
|
||||||
("bdb" ,bdb)
|
("bdb" ,bdb)))
|
||||||
("model"
|
|
||||||
,(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (string-append "mirror://sourceforge/libpinyin/"
|
|
||||||
"models/model14.text.tar.gz"))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"0qqk30nflj07zjhs231c95ln4yj4ipzwxxiwrxazrg4hb8bhypqq"))))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)
|
`(("pkg-config" ,pkg-config)))
|
||||||
("autoconf" ,autoconf)
|
|
||||||
("automake" ,automake)
|
|
||||||
("libtool" ,libtool)))
|
|
||||||
(synopsis "Library to handle Chinese pinyin")
|
(synopsis "Library to handle Chinese pinyin")
|
||||||
(description
|
(description
|
||||||
"The libpinyin C++ library provides algorithms needed for sentence-based
|
"The libpinyin C++ library provides algorithms needed for sentence-based
|
||||||
|
|
Loading…
Reference in a new issue