apteryx pushed a commit to branch master
in repository guix.

commit e89763682ee5b0ba9c770c53a29832e96b76b1ee
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Sun May 5 11:55:28 2024 -0400

    gnu: mupen64plus-video-glide64: Update to 2.5.9.
    
    * gnu/packages/emulators.scm (mupen64plus-video-glide64): Update to 2.5.9.
    [phases]: Delete use-sdl2 phase.
    
    Change-Id: Ic7359fb764f40fa25c553ab15e39f47963d3301b
---
 gnu/packages/emulators.scm | 18 +++++-------------
 1 file changed, 5 insertions(+), 13 deletions(-)

diff --git a/gnu/packages/emulators.scm b/gnu/packages/emulators.scm
index a935808da5..e1000ec8dc 100644
--- a/gnu/packages/emulators.scm
+++ b/gnu/packages/emulators.scm
@@ -15,7 +15,7 @@
 ;;; Copyright © 2020 Christopher Howard <[email protected]>
 ;;; Copyright © 2021 Felipe Balbi <[email protected]>
 ;;; Copyright © 2021, 2024 Felix Gruber <[email protected]>
-;;; Copyright © 2021 Maxim Cournoyer <[email protected]>
+;;; Copyright © 2021, 2024 Maxim Cournoyer <[email protected]>
 ;;; Copyright © 2021 Guillaume Le Vaillant <[email protected]>
 ;;; Copyright © 2023 c4droid <[email protected]>
 ;;; Copyright © 2023 Yovan Naumovski <[email protected]>
@@ -1102,7 +1102,7 @@ Arachnoid video plugin.")
 (define-public mupen64plus-video-glide64
   (package
     (name "mupen64plus-video-glide64")
-    (version "2.0.0")
+    (version "2.5.9")
     (source
      (origin
        (method git-fetch)
@@ -1111,7 +1111,7 @@ Arachnoid video plugin.")
              (commit version)))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "0qn5za7g7796kh2ag3xpmhbqg0yf71g9liz6ks0rha8pz73lgs01"))))
+        (base32 "0jscvr2imm9wj9jsgsp5815pv27f97w8g19ix0n39y9yy851qvrg"))))
     (build-system gnu-build-system)
     (native-inputs
      (list pkg-config which))
@@ -1123,17 +1123,9 @@ Arachnoid video plugin.")
          ;; The mupen64plus build system has no configure phase.
          (delete 'configure)
          ;; Makefile is in a subdirectory.
-         (add-before
-          'build 'cd-to-project-dir
-          (lambda _
-            (chdir "projects/unix")))
-         ;; XXX Should be unnecessary with the next release.
-         (add-before
-          'build 'use-sdl2
+         (add-before 'build 'cd-to-project-dir
           (lambda _
-            (substitute* "Makefile"
-              (("SDL_CONFIG = (.*)sdl-config" all prefix)
-               (string-append "SDL_CONFIG = " prefix "sdl2-config"))))))
+            (chdir "projects/unix"))))
        #:make-flags
        (let ((out (assoc-ref %outputs "out"))
              (m64p (assoc-ref %build-inputs "mupen64plus-core")))

Reply via email to