gnu: ardour: Add library dirs to RUNPATH.
* gnu/packages/audio.scm (ardour)[arguments]: Add a build phase to add all library output directories to the rpath using linker flags.
This commit is contained in:
parent
eb7c43c387
commit
21481a284a
1 changed files with 23 additions and 1 deletions
|
@ -151,7 +151,29 @@ (define-public ardour
|
|||
(file-name (string-append name "-" version))))
|
||||
(build-system waf-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; no check target
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after
|
||||
'unpack 'set-rpath-in-LDFLAGS
|
||||
(lambda _
|
||||
(substitute* "wscript"
|
||||
(("linker_flags = \\[\\]")
|
||||
(string-append "linker_flags = [\""
|
||||
"-Wl,-rpath="
|
||||
(assoc-ref %outputs "out")
|
||||
"/lib/ardour3/" ":"
|
||||
(assoc-ref %outputs "out")
|
||||
"/lib/ardour3/backends" ":"
|
||||
(assoc-ref %outputs "out")
|
||||
"/lib/ardour3/engines" ":"
|
||||
(assoc-ref %outputs "out")
|
||||
"/lib/ardour3/panners" ":"
|
||||
(assoc-ref %outputs "out")
|
||||
"/lib/ardour3/surfaces" ":"
|
||||
(assoc-ref %outputs "out")
|
||||
"/lib/ardour3/vamp" "\"]")))
|
||||
#t)))
|
||||
#:tests? #f ; no check target
|
||||
#:python ,python-2))
|
||||
(inputs
|
||||
`(("alsa-lib" ,alsa-lib)
|
||||
|
|
Loading…
Reference in a new issue