gnu: fluidsynth: Update to 2.2.4.

* gnu/packages/audio.scm (fluidsynth): Update to 2.2.4.
[arguments]: Don't explicitly return #t from phases.
[inputs]: Move alsa-lib, glib, jack-1, lash, libsndfile, and readline
from here…
[propagated-inputs]: …to here.
This commit is contained in:
Tobias Geerinckx-Rice 2021-12-28 23:42:35 +01:00
parent 15fdc854c9
commit bdc35b925b
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -1724,7 +1724,7 @@ (define-public g2reverb
(define-public fluidsynth
(package
(name "fluidsynth")
(version "2.1.8")
(version "2.2.4")
(source (origin
(method git-fetch)
(uri (git-reference
@ -1733,7 +1733,7 @@ (define-public fluidsynth
(file-name (git-file-name name version))
(sha256
(base32
"0r944ndn138ak9s3ivgd1wgkwkh6zp7jjnxd30hryczc6kbhkpmr"))))
"1061rdj69503spkd8vmfl3fqvyg4l41k5xcc4gw7niy31hnpnjmn"))))
(build-system cmake-build-system)
(arguments
'(#:tests? #f ; no check target
@ -1744,18 +1744,19 @@ (define-public fluidsynth
;; Install libraries to /lib, not /lib64.
(substitute* "CMakeLists.txt"
(("LIB_SUFFIX \\$\\{_init_lib_suffix\\}")
"LIB_SUFFIX \"\""))
#t)))))
"LIB_SUFFIX \"\"")))))))
(inputs
(list libsndfile
alsa-lib
jack-1
ladspa
lash
readline
glib))
(list ladspa))
(native-inputs
(list pkg-config))
(propagated-inputs
;; In Libs.private of fluidsynth.pc.
(list alsa-lib
glib
jack-1
lash
libsndfile
readline))
(home-page "https://www.fluidsynth.org/")
(synopsis "SoundFont synthesizer")
(description