mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: liquidsfz: Update to 0.3.1.
* gnu/packages/music.scm (liquidsfz): Update to 0.3.1. [source]: Fetch with git. [arguments]: Replace 'bootstrap phase. [native-inputs]: Add autoconf, automake, and libtool. [inputs]: Drop labels.
This commit is contained in:
parent
45e3933421
commit
f5446f7211
1 changed files with 19 additions and 11 deletions
|
@ -4812,24 +4812,32 @@ (define-public lmms
|
|||
(define-public liquidsfz
|
||||
(package
|
||||
(name "liquidsfz")
|
||||
(version "0.2.3")
|
||||
(version "0.3.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://space.twc.de/~stefan/liquidsfz/"
|
||||
"liquidsfz-" version ".tar.bz2"))
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/swesterfeld/liquidsfz")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1hb4hc3gkvjfbx0ls6wxzavhv2hf9ix11cz8yvndyb6q9lwkimwl"))))
|
||||
"0kijisxv8f8ihv8rk5cg1cmdh29zkr7i2ghds6wz0iq9mdkga12s"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:configure-flags '("--enable-shared")))
|
||||
(list
|
||||
#:configure-flags '(list "--enable-shared")
|
||||
#:phases
|
||||
'(modify-phases %standard-phases
|
||||
(replace 'bootstrap
|
||||
(lambda _
|
||||
;; The default 'bootstrap' phase would run 'autogen.sh', which
|
||||
;; would try to run ./configure and fail due to unpatched
|
||||
;; shebangs.
|
||||
(invoke "autoreconf" "-v" "--install"))))))
|
||||
(native-inputs
|
||||
(list pkg-config))
|
||||
(list autoconf automake libtool pkg-config))
|
||||
(inputs
|
||||
`(("jack" ,jack-2)
|
||||
("lv2" ,lv2)
|
||||
("readline" ,readline)
|
||||
("libsndfile" ,libsndfile)))
|
||||
(list jack-2 libsndfile lv2 readline))
|
||||
(home-page "https://github.com/swesterfeld/liquidsfz")
|
||||
(synopsis "Sampler library")
|
||||
(description "The main goal of liquidsfz is to provide an SFZ sampler
|
||||
|
|
Loading…
Reference in a new issue