guix_mirror_bot pushed a commit to branch audio-team
in repository guix.

commit d3179db8ac5db1ce9085e3c7bd66b88d26363856
Author: Sughosha <[email protected]>
AuthorDate: Sat Mar 21 07:04:09 2026 +0530

    gnu: libgme: Update to 0.6.5.
    
    * gnu/packages/audio.scm (libgme): Update to 0.6.5.
    [source]: Switch to git-fetch.
    [home-page]: Update URL.
    
    Change-Id: I7f934fef07b200fea18be2f3d5d6c0525907b1e6
    Signed-off-by: Gabriel Wicki <[email protected]>
---
 gnu/packages/audio.scm | 22 ++++++++++++----------
 1 file changed, 12 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 96e69c14b5..ee0798a2ad 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -585,15 +585,17 @@ synth (like DX7) or FM chip.")
 (define-public libgme
   (package
     (name "libgme")
-    (version "0.6.3")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append "https://bitbucket.org/mpyne/game-music-emu/";
-                                  "downloads/game-music-emu-" version
-                                  ".tar.xz"))
-              (sha256
-               (base32
-                "07857vdkak306d9s5g6fhmjyxk7vijzjhkmqb15s7ihfxx9lx8xb"))))
+    (version "0.6.5")
+    (source
+     (origin
+       (method git-fetch)
+       (uri
+        (git-reference
+         (url "https://github.com/libgme/game-music-emu";)
+         (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "093pz3avnj6a230bqbwwzqlzcjxnxidfxipnn7zirwp3h396szff"))))
     (build-system cmake-build-system)
     (arguments
      '(#:tests? #f                                ;no check target
@@ -602,7 +604,7 @@ synth (like DX7) or FM chip.")
        ;; header file names in libgme.so, meaning that libgme retains a
        ;; reference to GCC.  Disable UBSAN to avoid that.
        #:configure-flags '("-DENABLE_UBSAN=OFF")))
-    (home-page "https://bitbucket.org/mpyne/game-music-emu";)
+    (home-page "https://github.com/libgme/game-music-emu/wiki";)
     (synopsis "Video game music file playback library")
     (description
      "Game-music-emu is a collection of video game music file emulators that

Reply via email to