gnu: libgnt: Update to 2.14.3.
* gnu/packages/messaging.scm (libgnt): Update to 2.14.3. [arguments]: Don't explicitly return #t from phases.
This commit is contained in:
parent
e4b36ac1d4
commit
046fcbae67
1 changed files with 5 additions and 8 deletions
|
@ -239,7 +239,7 @@ Its design goals are simplicity and stability.")
|
||||||
(define-public libgnt
|
(define-public libgnt
|
||||||
(package
|
(package
|
||||||
(name "libgnt")
|
(name "libgnt")
|
||||||
(version "2.14.1")
|
(version "2.14.3")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -247,7 +247,7 @@ Its design goals are simplicity and stability.")
|
||||||
(string-append "mirror://sourceforge/pidgin/libgnt/"
|
(string-append "mirror://sourceforge/pidgin/libgnt/"
|
||||||
version "/libgnt-" version ".tar.xz"))
|
version "/libgnt-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1n2bxg0ignn53c08cp69pj4sdg53kwlqn23rincyjmpr327fdhsy"))))
|
(base32 "08v14fjcx2wx6c573wllq015l6zc8qkpz8rrl6qhp7crf9zlbxap"))))
|
||||||
(build-system meson-build-system)
|
(build-system meson-build-system)
|
||||||
(outputs '("out" "doc"))
|
(outputs '("out" "doc"))
|
||||||
(arguments
|
(arguments
|
||||||
|
@ -260,16 +260,14 @@ Its design goals are simplicity and stability.")
|
||||||
(("'/usr'")
|
(("'/usr'")
|
||||||
(string-append "'"
|
(string-append "'"
|
||||||
(assoc-ref inputs "ncurses")
|
(assoc-ref inputs "ncurses")
|
||||||
"'")))
|
"'")))))
|
||||||
#t))
|
|
||||||
(add-before 'configure 'patch-docbook-xml
|
(add-before 'configure 'patch-docbook-xml
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(with-directory-excursion "doc"
|
(with-directory-excursion "doc"
|
||||||
(substitute* "libgnt-docs.xml"
|
(substitute* "libgnt-docs.xml"
|
||||||
(("http://www.oasis-open.org/docbook/xml/4.1.2/")
|
(("http://www.oasis-open.org/docbook/xml/4.1.2/")
|
||||||
(string-append (assoc-ref inputs "docbook-xml")
|
(string-append (assoc-ref inputs "docbook-xml")
|
||||||
"/xml/dtd/docbook/"))))
|
"/xml/dtd/docbook/"))))))
|
||||||
#t))
|
|
||||||
(add-after 'install 'move-doc
|
(add-after 'install 'move-doc
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let* ((out (assoc-ref outputs "out"))
|
(let* ((out (assoc-ref outputs "out"))
|
||||||
|
@ -277,8 +275,7 @@ Its design goals are simplicity and stability.")
|
||||||
(mkdir-p (string-append doc "/share"))
|
(mkdir-p (string-append doc "/share"))
|
||||||
(rename-file
|
(rename-file
|
||||||
(string-append out "/share/gtk-doc")
|
(string-append out "/share/gtk-doc")
|
||||||
(string-append doc "/share/gtk-doc"))
|
(string-append doc "/share/gtk-doc"))))))))
|
||||||
#t))))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("docbook-xml" ,docbook-xml-4.1.2)
|
`(("docbook-xml" ,docbook-xml-4.1.2)
|
||||||
("glib:bin" ,glib "bin")
|
("glib:bin" ,glib "bin")
|
||||||
|
|
Reference in a new issue