gnu: ir: Update to 1.3.4.
* gnu/packages/audio.scm (ir): Update to 1.3.4. [source]: Fetch via git. [home-page]: Update. [arguments]: Pass INSTDIR.
This commit is contained in:
parent
c17fb65907
commit
6f85a9c45f
@ -1,5 +1,5 @@
|
|||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2015, 2016, 2017, 2018, 2019 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
|
;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
|
||||||
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
|
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
|
||||||
;;; Copyright © 2015 Alex Kost <alezost@gmail.com>
|
;;; Copyright © 2015 Alex Kost <alezost@gmail.com>
|
||||||
@ -1512,25 +1512,23 @@ well suited to all musical instruments and vocals.")
|
|||||||
(define-public ir
|
(define-public ir
|
||||||
(package
|
(package
|
||||||
(name "ir")
|
(name "ir")
|
||||||
(version "1.3.2")
|
(version "1.3.4")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
;; The original home-page is gone. Download the tarball from an
|
(uri (git-reference
|
||||||
;; archive mirror instead.
|
(url "https://github.com/tomszilagyi/ir.lv2")
|
||||||
(uri (list (string-append
|
(commit version)))
|
||||||
"https://web.archive.org/web/20150803095032/"
|
(file-name (git-file-name name version))
|
||||||
"http://factorial.hu/system/files/ir.lv2-"
|
|
||||||
version ".tar.gz")
|
|
||||||
(string-append
|
|
||||||
"https://mirrors.kernel.org/gentoo/distfiles/ir.lv2-"
|
|
||||||
version ".tar.gz")))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1jh2z01l9m4ar7yz0n911df07dygc7n4cl59p7qdjbh0nvkm747g"))))
|
"0svmjhg4r6wy5ci5rwz43ybll7yxjv7nnj7nyqscbzhr3gi5aib0"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; no tests
|
`(#:tests? #f ; no tests
|
||||||
#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out")))
|
#:make-flags
|
||||||
|
(list (string-append "PREFIX=" (assoc-ref %outputs "out"))
|
||||||
|
(string-append "INSTDIR="
|
||||||
|
(assoc-ref %outputs "out") "/lib/lv2"))
|
||||||
#:phases (modify-phases %standard-phases
|
#:phases (modify-phases %standard-phases
|
||||||
(delete 'configure)))) ; no configure script
|
(delete 'configure)))) ; no configure script
|
||||||
(inputs
|
(inputs
|
||||||
@ -1546,9 +1544,7 @@ well suited to all musical instruments and vocals.")
|
|||||||
(list (search-path-specification
|
(list (search-path-specification
|
||||||
(variable "LV2_PATH")
|
(variable "LV2_PATH")
|
||||||
(files '("lib/lv2")))))
|
(files '("lib/lv2")))))
|
||||||
;; Link to an archived copy of the home-page since the original is gone.
|
(home-page "https://tomszilagyi.github.io/plugins/ir.lv2")
|
||||||
(home-page (string-append "https://web.archive.org/web/20150803095032/"
|
|
||||||
"http://factorial.hu/plugins/lv2/ir"))
|
|
||||||
(synopsis "LV2 convolution reverb")
|
(synopsis "LV2 convolution reverb")
|
||||||
(description
|
(description
|
||||||
"IR is a low-latency, real-time, high performance signal convolver
|
"IR is a low-latency, real-time, high performance signal convolver
|
||||||
|
Loading…
Reference in New Issue
Block a user