diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-02-02 13:00:14 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-02-02 13:00:14 +0100 |
commit | f5446f721121c50a6e8fdf1e7285d861dfd180b8 (patch) | |
tree | 3362ac83acd046e424b449d26ebd34e77032142f | |
parent | 45e39334212a89b90e1ce604b1f3b22839ce31ca (diff) | |
download | guix-f5446f721121c50a6e8fdf1e7285d861dfd180b8.tar guix-f5446f721121c50a6e8fdf1e7285d861dfd180b8.tar.gz |
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.
-rw-r--r-- | gnu/packages/music.scm | 30 |
1 files changed, 19 insertions, 11 deletions
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index fc581a170e..967d9e4b23 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -4812,24 +4812,32 @@ audio samples and various soft sythesizers. It can receive input from a MIDI ke (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 |