gnu: guitarix: Update to 0.41.0.
* gnu/packages/audio.scm (guitarix): Update to 0.41.0. [inputs]: Remove gtkmm-2 and gtk+-2; add gtkmm and gtk+. [native-inputs]: Add sassc. [arguments]: Do not use Python 2; remove phase "fix-boost-includes".
This commit is contained in:
parent
9e4ef763ea
commit
bf592ef506
@ -108,6 +108,7 @@
|
|||||||
#:use-module (gnu packages valgrind)
|
#:use-module (gnu packages valgrind)
|
||||||
#:use-module (gnu packages video)
|
#:use-module (gnu packages video)
|
||||||
#:use-module (gnu packages vim) ;xxd
|
#:use-module (gnu packages vim) ;xxd
|
||||||
|
#:use-module (gnu packages web)
|
||||||
#:use-module (gnu packages webkit)
|
#:use-module (gnu packages webkit)
|
||||||
#:use-module (gnu packages wxwidgets)
|
#:use-module (gnu packages wxwidgets)
|
||||||
#:use-module (gnu packages xiph)
|
#:use-module (gnu packages xiph)
|
||||||
@ -1822,7 +1823,7 @@ patches that can be used with softsynths such as Timidity and WildMidi.")
|
|||||||
(define-public guitarix
|
(define-public guitarix
|
||||||
(package
|
(package
|
||||||
(name "guitarix")
|
(name "guitarix")
|
||||||
(version "0.38.1")
|
(version "0.41.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append
|
||||||
@ -1830,28 +1831,14 @@ patches that can be used with softsynths such as Timidity and WildMidi.")
|
|||||||
version ".tar.xz"))
|
version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0bw7xnrx062nwb1bfj9x660h7069ncmz77szcs8icpqxrvhs7z80"))))
|
"0qsfbyrrpb3bbdyq68k28mjql7kglxh8nqcw9jvja28x6x9ik5a0"))))
|
||||||
(build-system waf-build-system)
|
(build-system waf-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; no "check" target
|
`(#:tests? #f ; no "check" target
|
||||||
#:python ,python-2
|
|
||||||
#:configure-flags
|
#:configure-flags
|
||||||
(list
|
(list
|
||||||
;; Add the output lib directory to the RUNPATH.
|
;; Add the output lib directory to the RUNPATH.
|
||||||
(string-append "--ldflags=-Wl,-rpath=" %output "/lib"))
|
(string-append "--ldflags=-Wl,-rpath=" %output "/lib"))))
|
||||||
#:phases
|
|
||||||
(modify-phases %standard-phases
|
|
||||||
(add-after 'unpack 'fix-boost-includes
|
|
||||||
(lambda _
|
|
||||||
(substitute* "src/headers/gx_internal_plugins.h"
|
|
||||||
(("namespace gx_jack" m)
|
|
||||||
(string-append "#include <boost/noncopyable.hpp>\n" m)))
|
|
||||||
(substitute* '("src/headers/gx_system.h"
|
|
||||||
"src/headers/gx_parameter.h"
|
|
||||||
"src/headers/gx_json.h")
|
|
||||||
(("namespace gx_system" m)
|
|
||||||
(string-append "#include <boost/noncopyable.hpp>\n" m)))
|
|
||||||
#t)))))
|
|
||||||
(inputs
|
(inputs
|
||||||
`(("libsndfile" ,libsndfile)
|
`(("libsndfile" ,libsndfile)
|
||||||
("boost" ,boost)
|
("boost" ,boost)
|
||||||
@ -1862,8 +1849,8 @@ patches that can be used with softsynths such as Timidity and WildMidi.")
|
|||||||
("lilv" ,lilv)
|
("lilv" ,lilv)
|
||||||
("ladspa" ,ladspa)
|
("ladspa" ,ladspa)
|
||||||
("jack" ,jack-1)
|
("jack" ,jack-1)
|
||||||
("gtkmm" ,gtkmm-2)
|
("gtkmm" ,gtkmm)
|
||||||
("gtk+" ,gtk+-2)
|
("gtk+" ,gtk+)
|
||||||
("fftwf" ,fftwf)
|
("fftwf" ,fftwf)
|
||||||
("lrdf" ,lrdf)
|
("lrdf" ,lrdf)
|
||||||
("zita-resampler" ,zita-resampler)
|
("zita-resampler" ,zita-resampler)
|
||||||
@ -1873,7 +1860,8 @@ patches that can be used with softsynths such as Timidity and WildMidi.")
|
|||||||
("faust" ,faust)
|
("faust" ,faust)
|
||||||
("intltool" ,intltool)
|
("intltool" ,intltool)
|
||||||
("gettext" ,gettext-minimal)
|
("gettext" ,gettext-minimal)
|
||||||
("pkg-config" ,pkg-config)))
|
("pkg-config" ,pkg-config)
|
||||||
|
("sassc" ,sassc)))
|
||||||
(native-search-paths
|
(native-search-paths
|
||||||
(list (search-path-specification
|
(list (search-path-specification
|
||||||
(variable "LV2_PATH")
|
(variable "LV2_PATH")
|
||||||
|
Loading…
Reference in New Issue
Block a user