gnu: wavpack: Update to 5.3.2.
* gnu/packages/audio.scm (wavpack): Update to 5.3.2. [source]: Use GIT-FETCH and GIT-FILE-NAME. [arguments]: Replace the ‘bootstrap’ phase. [native-inputs]: Add autoconf, automake, and libtool.master
parent
9f38cdac5e
commit
0e001b1f41
|
@ -2858,17 +2858,31 @@ stretching and pitch scaling of audio. This package contains the library.")
|
||||||
(define-public wavpack
|
(define-public wavpack
|
||||||
(package
|
(package
|
||||||
(name "wavpack")
|
(name "wavpack")
|
||||||
(version "5.3.0")
|
(version "5.3.2")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append "http://www.wavpack.com/"
|
(method git-fetch)
|
||||||
"wavpack-" version ".tar.xz"))
|
(uri (git-reference
|
||||||
|
(url "https://github.com/dbry/WavPack")
|
||||||
|
(commit "e4e8d191e8dd74cbdbeaef3232c16a7ef517e68d")))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "1zj8svk6giy1abq3940sz32ygz7zldppxl47852zgn5wfm3l2spx"))
|
||||||
"01r351ggha9pdfk7p601dlxac4ka1q89lgnb6zqk00zf1fd3fi5l"))))
|
(file-name (git-file-name name version))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:configure-flags '("--disable-static")))
|
'(#:configure-flags
|
||||||
|
(list "--disable-static")
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(replace 'bootstrap
|
||||||
|
;; Running ./autogen.sh would cause premature configuration.
|
||||||
|
(lambda _
|
||||||
|
(invoke "autoreconf" "-vif")
|
||||||
|
#t)))))
|
||||||
|
(native-inputs
|
||||||
|
`(("autoconf" ,autoconf)
|
||||||
|
("automake" ,automake)
|
||||||
|
("libtool" ,libtool)))
|
||||||
(home-page "http://www.wavpack.com/")
|
(home-page "http://www.wavpack.com/")
|
||||||
(synopsis "Hybrid lossless audio codec")
|
(synopsis "Hybrid lossless audio codec")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in New Issue