gnu: cdrdao: Update to 1.2.5.
This also fixes a hash mismatch in the previous version. * gnu/packages/cdrom.scm (cdrdao): Update to 1.2.5.master
parent
a0cf2bb5f1
commit
f59d94d236
|
@ -250,7 +250,7 @@ reconstruction capability.")
|
||||||
(define-public cdrdao
|
(define-public cdrdao
|
||||||
(package
|
(package
|
||||||
(name "cdrdao")
|
(name "cdrdao")
|
||||||
(version "1.2.4")
|
(version "1.2.5")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -260,7 +260,7 @@ reconstruction capability.")
|
||||||
(string-append "rel_" (string-replace-substring version "." "_")))))
|
(string-append "rel_" (string-replace-substring version "." "_")))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1gcl8ibyylamy2d1piq3749nw3xrlp12r0spzp2gmni57b8a6b7j"))))
|
(base32 "1hh1lm4wr1vhsq2brczn94h88h3bppvjidj9cfqkl20jhaj38968"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:configure-flags
|
'(#:configure-flags
|
||||||
|
@ -274,9 +274,12 @@ reconstruction capability.")
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-before 'bootstrap 'fix-configure.ac
|
(add-before 'bootstrap 'fix-configure.ac
|
||||||
(lambda _
|
(lambda _
|
||||||
;; Remove reference to missing macro.
|
;; Remove references to missing macros.
|
||||||
(substitute* "configure.ac" (("^AM_GCONF_SOURCE_2.*") ""))
|
(substitute* "configure.ac"
|
||||||
#t)))))
|
(("^AM_GCONF_SOURCE_2.*") "")
|
||||||
|
;; This was introduced in autoconf-2.70, but is described
|
||||||
|
;; as usually not needed in the autoconf documentation.
|
||||||
|
(("^AC_CHECK_INCLUDES_DEFAULT") "")))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list autoconf automake pkg-config))
|
(list autoconf automake pkg-config))
|
||||||
(inputs
|
(inputs
|
||||||
|
|
Reference in New Issue