[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: yoshimi: Update to 1.4.1.
From: |
Ricardo Wurmus |
Subject: |
01/01: gnu: yoshimi: Update to 1.4.1. |
Date: |
Sat, 8 Oct 2016 12:04:04 +0000 (UTC) |
rekado pushed a commit to branch master
in repository guix.
commit 7fd30d1be43ac96e69e9b291b8d7790db7ce8ec6
Author: Ricardo Wurmus <address@hidden>
Date: Sat Oct 8 11:24:20 2016 +0200
gnu: yoshimi: Update to 1.4.1.
* gnu/packages/music.scm (yoshimi): Update to 1.4.1.
[arguments]: Add build phase "find-ncurses".
---
gnu/packages/music.scm | 16 +++++++++++++---
1 file changed, 13 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index cbe81cc..f7b1b17 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -1457,7 +1457,7 @@ capabilities, custom envelopes, effects, etc.")
(define-public yoshimi
(package
(name "yoshimi")
- (version "1.3.8.2")
+ (version "1.4.1")
(source (origin
(method url-fetch)
(uri (string-append "mirror://sourceforge/yoshimi/"
@@ -1465,7 +1465,7 @@ capabilities, custom envelopes, effects, etc.")
"/yoshimi-" version ".tar.bz2"))
(sha256
(base32
- "0wl4ln6v1nkkx56kfah23chyrhga2vi93i82g0s200c4s4184xr8"))))
+ "133sx42wb66g803pcrgdwph40wh94knvab3yfqkgm0001jv4v14y"))))
(build-system cmake-build-system)
(arguments
`(#:tests? #f ; there are no tests
@@ -1485,7 +1485,17 @@ capabilities, custom envelopes, effects, etc.")
(("-msse -msse2 -mfpmath=sse") "")
(("-march=(athlon64|core2)" flag)
(string-append flag " -msse -msse2 -mfpmath=sse")))
- #t)))))
+ #t))
+ ;; Yoshimi tries to find ncurses with pkg-config, but our ncurses
+ ;; package does not install .pc files.
+ (add-after 'unpack 'find-ncurses
+ (lambda _
+ (substitute* "src/CMakeLists.txt"
+ (("LIBNCURSES REQUIRED") "LIBNCURSES")
+ (("NCURSES REQUIRED") "NCURSES")
+ (("FATAL_ERROR \"libncurses") "STATUS \"libncurses")
+ (("\\$\\{NCURSES_LIBRARIES\\}") "ncurses"))
+ #t)))))
(inputs
`(("boost" ,boost)
("fftwf" ,fftwf)