gnu: dosbox-staging: Update to 0.79.1.

* gnu/packages/emulators.scm (dosbox-staging): Update to 0.79.1.
[arguments]: Delete a problematic file in the 'fix-includes phase.
[inputs]: Add iir & speexdsp.
This commit is contained in:
Tobias Geerinckx-Rice 2022-10-16 02:00:04 +02:00
parent 5a94c6cb36
commit 71c561f133
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -397,7 +397,7 @@ (define-public dosbox-staging
;; This is not a patch staging area for DOSBox, but an unaffiliated fork.
(package
(name "dosbox-staging")
(version "0.78.1")
(version "0.79.1")
(source
(origin
(method git-fetch)
@ -406,7 +406,7 @@ (define-public dosbox-staging
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "16byip1j9ckq0ik7ilrj0fc9dal3495s48xd21drpbb8q9jwb342"))))
(base32 "0wdnkz3djjc514hn945fr9g9mnpnvk16fan84ny9g5wxak6dvsqp"))))
(build-system meson-build-system)
(arguments
(list #:configure-flags
@ -420,6 +420,8 @@ (define-public dosbox-staging
#~(modify-phases %standard-phases
(add-after 'unpack 'fix-includes
(lambda _
;; This unnecessary file has an encoding error.
(delete-file "./src/libs/sdlcd/macosx/SDLOSXCAGuard.h")
(substitute* (find-files "." "\\.(cpp|h)")
(("^(#include <)(SDL[_.])" _ include file)
(string-append include "SDL2/" file))))))))
@ -428,10 +430,12 @@ (define-public dosbox-staging
(inputs
(list alsa-lib
fluidsynth
iir
libpng
mesa
opusfile
(sdl-union (list sdl2 sdl2-net))
speexdsp
zlib))
(home-page "https://dosbox-staging.github.io")
(synopsis "DOS/x86 PC emulator focusing on ease of use")