[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/04: gnu: guile-sdl: Update to 0.5.2.
From: |
Ludovic Courtès |
Subject: |
01/04: gnu: guile-sdl: Update to 0.5.2. |
Date: |
Sun, 05 Jul 2015 22:47:18 +0000 |
civodul pushed a commit to branch master
in repository guix.
commit af87a551bc8704af887a908235aae8275b4546eb
Author: Ludovic Courtès <address@hidden>
Date: Sun Jul 5 23:05:28 2015 +0200
gnu: guile-sdl: Update to 0.5.2.
* gnu/packages/sdl.scm (guile-sdl): Update to 0.5.2.
[arguments]: Augment 'fix-env-and-path' phase to modify
'test/Makefile.in'.
---
gnu/packages/sdl.scm | 12 +++++++++---
1 files changed, 9 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/sdl.scm b/gnu/packages/sdl.scm
index 4e9ebfb..50fe010 100644
--- a/gnu/packages/sdl.scm
+++ b/gnu/packages/sdl.scm
@@ -299,7 +299,7 @@ directory.")
(define-public guile-sdl
(package
(name "guile-sdl")
- (version "0.5.1")
+ (version "0.5.2")
(source (origin
(method url-fetch)
(uri
@@ -307,7 +307,7 @@ directory.")
version ".tar.xz"))
(sha256
(base32
- "126n4rd0ydh6i2s11ari5k85iivradlf12zq13b34shf9k1wn5am"))))
+ "0cjgs012a9922hn6xqwj66w6qmfs3nycnm56hyykx5n3g5p7ag01"))))
(build-system gnu-build-system)
(native-inputs
`(("pkg-config" ,pkg-config)
@@ -332,7 +332,13 @@ directory.")
(string-append (assoc-ref inputs "libjpeg") "/lib"))
;; Change the site directory /site/2.0 like Guile expects.
(substitute* "build-aux/guile-baux/re-prefixed-site-dirs"
- (("\"/site\"") "\"/site/2.0\"")))
+ (("\"/site\"") "\"/site/2.0\""))
+
+ ;; Skip tests that rely on sound support, which is unavailable in
+ ;; the build environment.
+ (substitute* "test/Makefile.in"
+ (("HAVE_MIXER = .*$")
+ "HAVE_MIXER = 0\n")))
(alist-cons-before
'check 'start-xorg-server
(lambda* (#:key inputs #:allow-other-keys)