me
/
guix
Archived
1
0
Fork 0

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
Parnikkapore 2024-04-20 23:58:32 +02:00 committed by Christopher Baines
parent eab1301bc2
commit 4e2dc2accd
No known key found for this signature in database
GPG Key ID: 5E28A33B0B84F577
1 changed files with 5 additions and 4 deletions

View File

@ -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