gnu: gx-guvnor-lv2: Update to 0.1.
* gnu/packages/music.scm (gx-guvnor-lv2): Update to 0.1. [source]: Use release tarball. [arguments]: Remove obsolete Makefile patching.
This commit is contained in:
parent
82bf45c8bd
commit
35f909d45c
|
@ -2307,44 +2307,39 @@ standard MIDI file with the csvmidi program.")
|
||||||
(license license:public-domain)))
|
(license license:public-domain)))
|
||||||
|
|
||||||
(define-public gx-guvnor-lv2
|
(define-public gx-guvnor-lv2
|
||||||
(let ((commit "9f528a7623a201383e119bb6a2df32b18396a9d5")
|
(package
|
||||||
(revision "1"))
|
(name "gx-guvnor-lv2")
|
||||||
(package
|
(version "0.1")
|
||||||
(name "gx-guvnor-lv2")
|
(source (origin
|
||||||
(version (string-append "0-" revision "." (string-take commit 9)))
|
(method url-fetch)
|
||||||
(source (origin
|
(uri (string-append "https://github.com/brummer10/GxGuvnor.lv2/"
|
||||||
(method git-fetch)
|
"archive/v" version ".tar.gz"))
|
||||||
(uri (git-reference
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(url "https://github.com/brummer10/GxGuvnor.lv2")
|
(sha256
|
||||||
(commit commit)))
|
(base32
|
||||||
(sha256
|
"0rnfvrvs8qmmldyfmx4llyly33zp68448gx40ywdwj42x0mam92p"))))
|
||||||
(base32
|
(build-system gnu-build-system)
|
||||||
"10zx84p2vd7i1yqc5ma9p17927265j4g0zfwv9rxladw0nm8y45k"))
|
(arguments
|
||||||
(file-name (string-append name "-" version "-checkout"))))
|
`(;; The check target is used only to output a warning.
|
||||||
(build-system gnu-build-system)
|
#:tests? #f
|
||||||
(arguments
|
#:make-flags
|
||||||
`(;; The check target is used only to output a warning.
|
(list (string-append "DESTDIR=" (assoc-ref %outputs "out")))
|
||||||
#:tests? #f
|
#:phases
|
||||||
#:make-flags
|
(modify-phases %standard-phases
|
||||||
(list (string-append "DESTDIR=" (assoc-ref %outputs "out")))
|
(replace 'configure
|
||||||
#:phases
|
(lambda _
|
||||||
(modify-phases %standard-phases
|
(substitute* "Makefile"
|
||||||
(replace 'configure
|
(("INSTALL_DIR = .*") "INSTALL_DIR=/lib/lv2\n"))
|
||||||
(lambda _
|
#t)))))
|
||||||
(substitute* "Makefile"
|
(inputs
|
||||||
(("INSTALL_DIR = .*") "INSTALL_DIR=/lib/lv2\n")
|
`(("lv2" ,lv2)))
|
||||||
;; Avoid rebuilding everything
|
(home-page "https://github.com/brummer10/GxGuvnor.lv2")
|
||||||
(("install : all") "install:"))
|
(synopsis "Overdrive/distortion pedal simulation")
|
||||||
#t)))))
|
(description "This package provides the LV2 plugin \"GxGuvnor\", a
|
||||||
(inputs
|
|
||||||
`(("lv2" ,lv2)))
|
|
||||||
(home-page "https://github.com/brummer10/GxGuvnor.lv2")
|
|
||||||
(synopsis "Overdrive/distortion pedal simulation")
|
|
||||||
(description "This package provides the LV2 plugin \"GxGuvnor\", a
|
|
||||||
simulation of an overdrive or distortion pedal for guitars.")
|
simulation of an overdrive or distortion pedal for guitars.")
|
||||||
;; The LICENSE file says GPLv3 but the license headers in the files say
|
;; The LICENSE file says GPLv3 but the license headers in the files say
|
||||||
;; GPLv2 or later.
|
;; GPLv2 or later.
|
||||||
(license license:gpl2+))))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
(define-public gx-vbass-preamp-lv2
|
(define-public gx-vbass-preamp-lv2
|
||||||
(let ((commit "0e599abab10c7669dd444e5d06f671c2fc1b9c6c")
|
(let ((commit "0e599abab10c7669dd444e5d06f671c2fc1b9c6c")
|
||||||
|
|
Loading…
Reference in New Issue