mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 07:56:16 -05:00
gnu: muse-sequencer: Update to 4.0.0.
* gnu/packages/music.scm (muse-sequencer): Update to 4.0.0. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
f5282a1738
commit
aabea83874
1 changed files with 4 additions and 7 deletions
|
@ -4770,19 +4770,16 @@ (define-public musescore
|
|||
(define-public muse-sequencer
|
||||
(package
|
||||
(name "muse-sequencer")
|
||||
(version "3.1.1")
|
||||
(version "4.0.0")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/muse-sequencer/muse")
|
||||
(commit (string-append "muse_"
|
||||
(string-map (lambda (c)
|
||||
(if (char=? c #\.)
|
||||
#\_ c)) version)))))
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1rasp2v1ds2aw296lbf27rzw0l9fjl0cvbvw85d5ycvh6wkm301p"))))
|
||||
"1gamr9ln10l26wwyin1a4grrqy6h05qzcgp28wsp85yczkpsh02c"))))
|
||||
(build-system cmake-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; there is no test target
|
||||
|
@ -4800,7 +4797,7 @@ (define-public muse-sequencer
|
|||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'chdir
|
||||
(lambda _ (chdir "muse3") #t))
|
||||
(lambda _ (chdir "src") #t))
|
||||
(add-after 'chdir 'fix-include
|
||||
(lambda _
|
||||
(substitute* "muse/driver/rtaudio.h"
|
||||
|
|
Loading…
Reference in a new issue