mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-19 21:27:37 -05:00
gnu: muse-sequencer: Update to 3.1.1.
* gnu/packages/music.scm (muse-sequencer): Update to 3.1.1. [arguments]: Set CMAKE_EXE_LINKER_FLAGS and CMAKE_SHARED_LINKER_FLAGS; end "chdir" phase with #T.
This commit is contained in:
parent
61e7fa07c8
commit
5525aea7cf
1 changed files with 12 additions and 4 deletions
|
@ -4158,7 +4158,7 @@ (define-public musescore
|
|||
(define-public muse-sequencer
|
||||
(package
|
||||
(name "muse-sequencer")
|
||||
(version "3.0.0")
|
||||
(version "3.1.1")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
|
@ -4170,7 +4170,7 @@ (define-public muse-sequencer
|
|||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1nninz8qyqlxxjdnrm79y3gr3056pga9l2fsqh674jd3cjvafya3"))))
|
||||
"1rasp2v1ds2aw296lbf27rzw0l9fjl0cvbvw85d5ycvh6wkm301p"))))
|
||||
(build-system cmake-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; there is no test target
|
||||
|
@ -4178,11 +4178,19 @@ (define-public muse-sequencer
|
|||
(list "-DENABLE_LV2_SUPPLIED=OFF"
|
||||
"-DENABLE_RTAUDIO=OFF" ; FIXME: not packaged
|
||||
"-DENABLE_INSTPATCH=OFF" ; FIXME: not packaged
|
||||
"-DENABLE_VST_NATIVE=OFF")
|
||||
"-DENABLE_VST_NATIVE=OFF"
|
||||
(string-append "-DCMAKE_EXE_LINKER_FLAGS="
|
||||
"-Wl,-rpath="
|
||||
(assoc-ref %outputs "out") "/lib/muse-"
|
||||
,(version-major+minor version) "/modules")
|
||||
(string-append "-DCMAKE_SHARED_LINKER_FLAGS="
|
||||
"-Wl,-rpath="
|
||||
(assoc-ref %outputs "out") "/lib/muse-"
|
||||
,(version-major+minor version) "/modules"))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'chdir
|
||||
(lambda _ (chdir "muse3"))))))
|
||||
(lambda _ (chdir "muse3") #t)))))
|
||||
(inputs
|
||||
`(("alsa-lib" ,alsa-lib)
|
||||
("lash" ,lash)
|
||||
|
|
Loading…
Reference in a new issue