gnu: mame: Update to 0.200.

* gnu/packages/emulators.scm (mame): Update to 0.200.
[arguments]: Fix missing includes in source.
This commit is contained in:
Nicolas Goaziou 2018-08-11 00:05:24 +02:00
parent 7598b678fa
commit c5ca9b96cb
No known key found for this signature in database
GPG key ID: A834B9E080A93738

View file

@ -1175,7 +1175,7 @@ (define-public scummvm
(define-public mame (define-public mame
(package (package
(name "mame") (name "mame")
(version "0.199") (version "0.200")
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
@ -1185,7 +1185,7 @@ (define-public mame
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"0rb2k6dxss36jjalbpvj2xsqdwqyqy89qab7jpv8ig1y08dpg36n")) "0ddw8635hdm21lgpf13k1vhfywy3460rwciv93vrqmpkq2dvpmib"))
(modules '((guix build utils))) (modules '((guix build utils)))
(snippet (snippet
;; Remove bundled libraries. ;; Remove bundled libraries.
@ -1211,6 +1211,17 @@ (define-public mame
#:tests? #f ;no test in regular release #:tests? #f ;no test in regular release
#:phases #:phases
(modify-phases %standard-phases (modify-phases %standard-phases
;; Add missing include lines for "fmin" and "ceil" functions.
;; Reported upstream. Will be fixed in 0.201.
(add-after 'unpack 'add-missing-include
(lambda _
(substitute* "src/devices/cpu/mips/mips3.cpp"
(("#include \"ps2vu.h\"" all)
(string-append all "\n#include <cmath>")))
(substitute* "src/devices/cpu/mips/ps2vif1.cpp"
(("#include \"ps2vif1.h\"" all)
(string-append all "\n#include <cmath>")))
#t))
(delete 'configure) (delete 'configure)
(add-after 'build 'build-documentation (add-after 'build 'build-documentation
(lambda _ (invoke "make" "-C" "docs" "man" "info"))) (lambda _ (invoke "make" "-C" "docs" "man" "info")))