gnu: mod-utilities: Update to 0-2.80ea3ea9f.

* gnu/packages/music.scm (mod-utilities): Update to 0-2.80ea3ea9f.
[arguments]: Set PREFIX and CC.
This commit is contained in:
Ricardo Wurmus 2017-12-16 08:43:10 +01:00
parent 0febd67387
commit fe049d2180
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 7 additions and 5 deletions

View File

@ -2947,8 +2947,8 @@ slow gear audio effect to produce volume swells."))))
a simulation of an analog Wah pedal with switchless activation.")))) a simulation of an analog Wah pedal with switchless activation."))))
(define-public mod-utilities (define-public mod-utilities
(let ((commit "7cdeeac26ae682730740105ece121d4dddb8ba3f") (let ((commit "80ea3ea9f52fab7f191671f4810bf90fc955a046")
(revision "1")) (revision "2"))
(package (package
(name "mod-utilities") (name "mod-utilities")
(version (string-append "0-" revision "." (string-take commit 9))) (version (string-append "0-" revision "." (string-take commit 9)))
@ -2957,17 +2957,19 @@ a simulation of an analog Wah pedal with switchless activation."))))
(uri (git-reference (uri (git-reference
(url "https://github.com/moddevices/mod-utilities.git") (url "https://github.com/moddevices/mod-utilities.git")
(commit commit))) (commit commit)))
(file-name (string-append name "-" version "-checkout"))
(sha256 (sha256
(base32 (base32
"1ilnkbrmwrszxvc21qlb86h29yz7cnc6rcp0jmna1y693ny2qhf4")) "1v55zmzmlg0ka7341x5lsvb44amy17vk27s669ps1basd1bk5s5v"))))
(file-name (string-append name "-" version "-checkout"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
`(#:tests? #f ; there are no tests `(#:tests? #f ; there are no tests
#:make-flags #:make-flags
(list (string-append "INSTALL_PATH=" (list (string-append "INSTALL_PATH="
(assoc-ref %outputs "out") (assoc-ref %outputs "out")
"/lib/lv2")) "/lib/lv2")
(string-append "PREFIX=" (assoc-ref %outputs "out"))
"CC=gcc")
#:phases #:phases
(modify-phases %standard-phases (modify-phases %standard-phases
(delete 'configure)))) (delete 'configure))))