mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-28 14:01:29 -05:00
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:
parent
5a94c6cb36
commit
71c561f133
1 changed files with 6 additions and 2 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue