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
|
@ -299,7 +299,7 @@ directory.")
|
||||||
(define-public guile-sdl
|
(define-public guile-sdl
|
||||||
(package
|
(package
|
||||||
(name "guile-sdl")
|
(name "guile-sdl")
|
||||||
(version "0.5.1")
|
(version "0.5.2")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri
|
(uri
|
||||||
|
@ -307,7 +307,7 @@ directory.")
|
||||||
version ".tar.xz"))
|
version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"126n4rd0ydh6i2s11ari5k85iivradlf12zq13b34shf9k1wn5am"))))
|
"0cjgs012a9922hn6xqwj66w6qmfs3nycnm56hyykx5n3g5p7ag01"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)
|
`(("pkg-config" ,pkg-config)
|
||||||
|
@ -332,7 +332,13 @@ directory.")
|
||||||
(string-append (assoc-ref inputs "libjpeg") "/lib"))
|
(string-append (assoc-ref inputs "libjpeg") "/lib"))
|
||||||
;; Change the site directory /site/2.0 like Guile expects.
|
;; Change the site directory /site/2.0 like Guile expects.
|
||||||
(substitute* "build-aux/guile-baux/re-prefixed-site-dirs"
|
(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
|
(alist-cons-before
|
||||||
'check 'start-xorg-server
|
'check 'start-xorg-server
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
|
|
Loading…
Reference in New Issue