mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-14 07:00:32 -05:00
gnu: wavpack: Update to 5.4.0.
* gnu/packages/audio.scm (wavpack): Update to 5.4.0. [source]: Download release tarball. [arguments]: Remove custom 'boostrap phase. [native-inputs]: Remove autoconf, automake, libtool.
This commit is contained in:
parent
a99932503e
commit
5a4d0a6531
1 changed files with 6 additions and 19 deletions
|
@ -3259,31 +3259,18 @@ (define-public libsbsms
|
||||||
(define-public wavpack
|
(define-public wavpack
|
||||||
(package
|
(package
|
||||||
(name "wavpack")
|
(name "wavpack")
|
||||||
(version "5.3.2")
|
(version "5.4.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method url-fetch)
|
||||||
(uri (git-reference
|
(uri (string-append "https://github.com/dbry/WavPack/releases/download/"
|
||||||
(url "https://github.com/dbry/WavPack")
|
version "/wavpack-" version ".tar.xz"))
|
||||||
(commit "e4e8d191e8dd74cbdbeaef3232c16a7ef517e68d")))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1zj8svk6giy1abq3940sz32ygz7zldppxl47852zgn5wfm3l2spx"))
|
(base32 "0ycbqarw25x7208jilh86vwwiqklr7f617jps9mllqc659mnmpjb"))))
|
||||||
(file-name (git-file-name name version))))
|
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:configure-flags
|
'(#:configure-flags
|
||||||
(list "--disable-static")
|
(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 "https://www.wavpack.com/")
|
(home-page "https://www.wavpack.com/")
|
||||||
(synopsis "Hybrid lossless audio codec")
|
(synopsis "Hybrid lossless audio codec")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue