gnu: lsp-plugins: Update build environment variables.
* gnu/packages/music.scm (lsp-plugins): Update build environment variables. [make-flags]: Unset BUILD_MODULES, PREFIX, and ETC_PATH. [phases]: Set FEATURES and TEST. Change-Id: I24b6324eda6647429c7fe128abdc631b02f94cd1 Signed-off-by: Christopher Baines <mail@cbaines.net>master
parent
eab1301bc2
commit
4e2dc2accd
|
@ -6225,14 +6225,15 @@ and reverb.")
|
|||
#:make-flags
|
||||
#~(list
|
||||
(string-append "CC=" #$(cc-for-target))
|
||||
"BUILD_MODULES=\"lv2 ladspa jack\"" "VST_UI=0"
|
||||
(string-append "PREFIX=" #$output)
|
||||
(string-append "ETC_PATH=" #$output "/etc"))
|
||||
"VST_UI=0")
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(replace 'configure
|
||||
(lambda _
|
||||
(invoke "make" "config" "TEST=1"
|
||||
(invoke "make" "config"
|
||||
"STRICT=1"
|
||||
"TEST=1"
|
||||
"FEATURES=lv2 ladspa jack"
|
||||
(string-append "PREFIX=" #$output)
|
||||
(string-append "ETCDIR=" #$output "/etc"))))
|
||||
(replace 'check
|
||||
|
|
Reference in New Issue