gnu: librep: Update to 0.92.6.
* gnu/packages/sawfish.scm (librep): Update to 0.92.6. [arguments]: New field. [native-inputs]: Add AUTOCONF-WRAPPER, AUTOMAKE, and LIBTOOL.
This commit is contained in:
parent
d5c969ce0c
commit
b99eec83b8
1 changed files with 15 additions and 3 deletions
|
@ -22,6 +22,7 @@
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (gnu packages)
|
#:use-module (gnu packages)
|
||||||
|
#:use-module (gnu packages autotools)
|
||||||
#:use-module (gnu packages databases)
|
#:use-module (gnu packages databases)
|
||||||
#:use-module (gnu packages gettext)
|
#:use-module (gnu packages gettext)
|
||||||
#:use-module (gnu packages gtk)
|
#:use-module (gnu packages gtk)
|
||||||
|
@ -36,18 +37,29 @@
|
||||||
(define-public librep
|
(define-public librep
|
||||||
(package
|
(package
|
||||||
(name "librep")
|
(name "librep")
|
||||||
(version "0.92.5")
|
(version "0.92.6")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "http://download.tuxfamily.org/" name "/"
|
(uri (string-append "http://download.tuxfamily.org/" name "/"
|
||||||
name "_" version ".tar.xz"))
|
name "_" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0zsy5gi8kvz5vq41y5rzm6lfi3dpiwbg4diwb6d30qfi72mrpni2"))))
|
"1k6c0hmyzxh8459r790slh9vv9vwy9d7w3nlmrqypbx9mk855hgy"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:phases (modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'bootstrap
|
||||||
|
(lambda _
|
||||||
|
;; The 0.92.6 tarball was not produced by 'make dist'
|
||||||
|
;; and lacks generated files. Sadness.
|
||||||
|
(zero? (system* "autoreconf" "-vfi")))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("makeinfo" ,texinfo)
|
`(("makeinfo" ,texinfo)
|
||||||
("pkg-config" ,pkg-config)))
|
("pkg-config" ,pkg-config)
|
||||||
|
|
||||||
|
("autoconf" ,(autoconf-wrapper))
|
||||||
|
("automake" ,automake)
|
||||||
|
("libtool" ,libtool)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("gdbm" ,gdbm)
|
`(("gdbm" ,gdbm)
|
||||||
("gmp" ,gmp)
|
("gmp" ,gmp)
|
||||||
|
|
Reference in a new issue