gnu: gx-voodoo-fuzz-lv2: Fix SSE detection.
* gnu/packages/music.scm (gx-voodoo-fuzz-lv2)[arguments]: Add phase "escape-shell-commands".
This commit is contained in:
parent
b9ac372c55
commit
2dedc16b04
|
@ -2210,6 +2210,17 @@ simulation of the Hyperion Fuzz pedal."))))
|
|||
(base32
|
||||
"1ji915bly588a8xwvwspvsqv0nh8ljgi6rky2mk1d9d6nz96jrbk"))
|
||||
(file-name (string-append name "-" version "-checkout"))))
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments gx-guvnor-lv2)
|
||||
((#:phases phases)
|
||||
`(modify-phases ,phases
|
||||
(add-after 'unpack 'escape-shell-commands
|
||||
(lambda _
|
||||
(substitute* "Makefile"
|
||||
(("cat ") "$(shell cat ")
|
||||
(("/dev/null") "/dev/null)")
|
||||
(("SSE_CFLAGS = \"\"") "SSE_CFLAGS ="))
|
||||
#t))))))
|
||||
(home-page "https://github.com/brummer10/GxVoodoFuzz.lv2")
|
||||
(synopsis "Fuzz effect modelled after the Voodoo Lab SuperFuzz")
|
||||
(description "This package provides the LV2 plugin \"GxVoodooFuzz\", a
|
||||
|
|
Loading…
Reference in New Issue