mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: gx-vbass-preamp-lv2: Update to 0.3.f6a01c2.
* gnu/packages/music.scm (gx-vbass-preamp-lv2): Update to 0.3.f6a01c2. [version]: Use GIT-VERSION. [source]: Use GIT-FILE-NAME. [arguments]: Set CC in make-flags. [inputs]: Replace gtk+-2 with gtk+. Change-Id: Ied9357d1d8804c263a801194ae8df661aa6f8afa
This commit is contained in:
parent
c3e42621e9
commit
746a940822
1 changed files with 20 additions and 6 deletions
|
@ -4641,11 +4641,11 @@ (define-public gx-guvnor-lv2
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public gx-vbass-preamp-lv2
|
(define-public gx-vbass-preamp-lv2
|
||||||
(let ((commit "eb999b0ca0ef4da40a59e458a9ab6e7042b96c99")
|
(let ((commit "f6a01c22fea71b155a797853c23653137ac89c1c")
|
||||||
(revision "2"))
|
(revision "3"))
|
||||||
(package (inherit gx-guvnor-lv2)
|
(package (inherit gx-guvnor-lv2)
|
||||||
(name "gx-vbass-preamp-lv2")
|
(name "gx-vbass-preamp-lv2")
|
||||||
(version (string-append "0-" revision "." (string-take commit 9)))
|
(version (git-version "0" revision commit))
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
|
@ -4653,10 +4653,24 @@ (define-public gx-vbass-preamp-lv2
|
||||||
(commit commit)))
|
(commit commit)))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0firap073ldw4nrykkd7jvyyj0jbl1nslxyzjj4kswazp99x7d9h"))
|
"1ssa2xkppn7cn8lfvglb6brm5qsd7kysmabfj34qrqbywf5hdisw"))
|
||||||
(file-name (string-append name "-" version "-checkout"))))
|
(file-name (git-file-name name version))))
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
;; The check target is used only to output a warning.
|
||||||
|
#:tests? #false
|
||||||
|
#:make-flags
|
||||||
|
#~(list (string-append "DESTDIR=" #$output)
|
||||||
|
(string-append "CC=" #$(cc-for-target)))
|
||||||
|
#:phases
|
||||||
|
'(modify-phases %standard-phases
|
||||||
|
(replace 'configure
|
||||||
|
(lambda _
|
||||||
|
(substitute* "Makefile"
|
||||||
|
(("INSTALL_DIR = .*") "INSTALL_DIR=/lib/lv2\n")
|
||||||
|
(("install : all") "install :")))))))
|
||||||
(inputs
|
(inputs
|
||||||
(list lv2 gtk+-2))
|
(list lv2 gtk+))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list pkg-config))
|
(list pkg-config))
|
||||||
(home-page "https://github.com/brummer10/GxVBassPreAmp.lv2")
|
(home-page "https://github.com/brummer10/GxVBassPreAmp.lv2")
|
||||||
|
|
Loading…
Reference in a new issue