mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 14:56:54 +01:00
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'.
This commit is contained in:
parent
d19cf78357
commit
af87a551bc
1 changed files with 9 additions and 3 deletions
|
@ -299,7 +299,7 @@ (define sdl-union
|
|||
(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 @@ (define-public guile-sdl
|
|||
version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"126n4rd0ydh6i2s11ari5k85iivradlf12zq13b34shf9k1wn5am"))))
|
||||
"0cjgs012a9922hn6xqwj66w6qmfs3nycnm56hyykx5n3g5p7ag01"))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)
|
||||
|
@ -332,7 +332,13 @@ (define-public guile-sdl
|
|||
(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)
|
||||
|
|
Loading…
Reference in a new issue