gnu: gx-guvnor-lv2: Download sources from git.
* gnu/packages/music.scm (gx-guvnor-lv2)[source]: Download from git. [arguments]: Decouple "install" target from build target.
This commit is contained in:
parent
4b35953257
commit
6ac8c78c89
|
@ -2677,13 +2677,14 @@ standard MIDI file with the csvmidi program.")
|
||||||
(name "gx-guvnor-lv2")
|
(name "gx-guvnor-lv2")
|
||||||
(version "0.1")
|
(version "0.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://github.com/brummer10/GxGuvnor.lv2/"
|
(uri (git-reference
|
||||||
"archive/v" version ".tar.gz"))
|
(url "https://github.com/brummer10/GxGuvnor.lv2.git")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (string-append name "-" version "-checkout"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0rnfvrvs8qmmldyfmx4llyly33zp68448gx40ywdwj42x0mam92p"))))
|
"1wa5070j40p7f0b3kr259pzm99xb6cf2badr2capayjvgayd6gnm"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(;; The check target is used only to output a warning.
|
`(;; The check target is used only to output a warning.
|
||||||
|
@ -2695,7 +2696,8 @@ standard MIDI file with the csvmidi program.")
|
||||||
(replace 'configure
|
(replace 'configure
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "Makefile"
|
(substitute* "Makefile"
|
||||||
(("INSTALL_DIR = .*") "INSTALL_DIR=/lib/lv2\n"))
|
(("INSTALL_DIR = .*") "INSTALL_DIR=/lib/lv2\n")
|
||||||
|
(("install : all") "install :"))
|
||||||
#t)))))
|
#t)))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("lv2" ,lv2)))
|
`(("lv2" ,lv2)))
|
||||||
|
|
Loading…
Reference in New Issue