mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: ibus-libpinyin: Update to 1.10.0.
* gnu/packages/ibus.scm (ibus-libpinyin): Update to 1.10.0. [arguments]: Remove "autogen" phase. [native-inputs]: Remove autoconf, automake, and libtool.
This commit is contained in:
parent
8738c2b342
commit
b3e23b0216
1 changed files with 6 additions and 12 deletions
|
@ -139,22 +139,19 @@ (define-public ibus
|
||||||
(define-public ibus-libpinyin
|
(define-public ibus-libpinyin
|
||||||
(package
|
(package
|
||||||
(name "ibus-libpinyin")
|
(name "ibus-libpinyin")
|
||||||
(version "1.9.2")
|
(version "1.10.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://github.com/libpinyin/"
|
(uri (string-append "https://github.com/libpinyin/ibus-libpinyin/"
|
||||||
"ibus-libpinyin/archive/" version ".tar.gz"))
|
"releases/download/" version
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
"/ibus-libpinyin-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0wpgs0m62l4zlis9f11b7xknhgnw2xw485nc2xrzk880s17pp1mr"))))
|
"0yq8aw4lddiviag8cnik6fp52vvk8lxv6bym13a3xya84c6zii3c"))))
|
||||||
(build-system glib-or-gtk-build-system)
|
(build-system glib-or-gtk-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'autogen
|
|
||||||
(lambda _ (and (zero? (system* "intltoolize"))
|
|
||||||
(zero? (system* "autoreconf" "-vif")))))
|
|
||||||
(add-after 'wrap-program 'wrap-with-additional-paths
|
(add-after 'wrap-program 'wrap-with-additional-paths
|
||||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||||
;; Make sure 'ibus-setup-libpinyin' runs with the correct
|
;; Make sure 'ibus-setup-libpinyin' runs with the correct
|
||||||
|
@ -180,10 +177,7 @@ (define-public ibus-libpinyin
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)
|
`(("pkg-config" ,pkg-config)
|
||||||
("intltool" ,intltool)
|
("intltool" ,intltool)
|
||||||
("autoconf" ,autoconf)
|
("glib" ,glib "bin")))
|
||||||
("automake" ,automake)
|
|
||||||
("glib" ,glib "bin")
|
|
||||||
("libtool" ,libtool)))
|
|
||||||
(synopsis "Chinese pinyin and ZhuYin input methods for IBus")
|
(synopsis "Chinese pinyin and ZhuYin input methods for IBus")
|
||||||
(description
|
(description
|
||||||
"This package includes a Chinese pinyin input method and a Chinese
|
"This package includes a Chinese pinyin input method and a Chinese
|
||||||
|
|
Loading…
Reference in a new issue