Archived
1
0
Fork 0

gnu: muse-sequencer: Add optional dependencies.

* gnu/packages/music.scm (muse-sequencer)[native-inputs]: Add perl,
python.
[inputs]: Add glib, libinstpatch. Sort alphabetically.
[arguments]: Remove "-DENABLE_INSTPATCH=OFF" from #:configure-flags.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
Vinicius Monego 2021-04-26 23:53:11 +00:00 committed by Nicolas Goaziou
parent aabea83874
commit 62d6da68d0
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -4784,8 +4784,7 @@ sample library.")
(arguments (arguments
`(#:tests? #f ; there is no test target `(#:tests? #f ; there is no test target
#:configure-flags #:configure-flags
(list "-DENABLE_INSTPATCH=OFF" ; FIXME: not packaged (list "-DENABLE_VST_NATIVE=OFF"
"-DENABLE_VST_NATIVE=OFF"
(string-append "-DCMAKE_EXE_LINKER_FLAGS=" (string-append "-DCMAKE_EXE_LINKER_FLAGS="
"-Wl,-rpath=" "-Wl,-rpath="
(assoc-ref %outputs "out") "/lib/muse-" (assoc-ref %outputs "out") "/lib/muse-"
@ -4805,26 +4804,30 @@ sample library.")
#t))))) #t)))))
(inputs (inputs
`(("alsa-lib" ,alsa-lib) `(("alsa-lib" ,alsa-lib)
("lash" ,lash)
("jack" ,jack-1)
("liblo" ,liblo)
("dssi" ,dssi) ("dssi" ,dssi)
("ladspa" ,ladspa)
("lv2" ,lv2)
("lilv" ,lilv)
("sord" ,sord)
("libsndfile" ,libsndfile)
("libsamplerate" ,libsamplerate)
("lrdf" ,lrdf)
("fluidsynth" ,fluidsynth) ("fluidsynth" ,fluidsynth)
("glib" ,glib)
("jack" ,jack-1)
("ladspa" ,ladspa)
("lash" ,lash)
("libinstpatch" ,libinstpatch)
("liblo" ,liblo)
("libsamplerate" ,libsamplerate)
("libsndfile" ,libsndfile)
("lilv" ,lilv)
("lrdf" ,lrdf)
("lv2" ,lv2)
("pcre" ,pcre) ("pcre" ,pcre)
("pulseaudio" ,pulseaudio) ; required by rtaudio ("pulseaudio" ,pulseaudio) ; required by rtaudio
("qtbase" ,qtbase) ("qtbase" ,qtbase)
("qtsvg" ,qtsvg) ("qtsvg" ,qtsvg)
("rtaudio" ,rtaudio) ("rtaudio" ,rtaudio)
("rubberband" ,rubberband))) ("rubberband" ,rubberband)
("sord" ,sord)))
(native-inputs (native-inputs
`(("pkg-config" ,pkg-config) `(("perl" ,perl)
("pkg-config" ,pkg-config)
("python" ,python-wrapper)
("qttools" ,qttools))) ("qttools" ,qttools)))
(home-page "https://muse-sequencer.github.io/") (home-page "https://muse-sequencer.github.io/")
(synopsis "MIDI/Audio sequencer") (synopsis "MIDI/Audio sequencer")