guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: supertuxkart: Update to 1.3.


From: guix-commits
Subject: branch master updated: gnu: supertuxkart: Update to 1.3.
Date: Fri, 08 Oct 2021 10:02:47 -0400

This is an automated email from the git hooks/post-receive script.

efraim pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 27e3369  gnu: supertuxkart: Update to 1.3.
27e3369 is described below

commit 27e33695b38ecfe28c9d6b2d35e7e87826611a76
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Fri Oct 8 16:58:08 2021 +0300

    gnu: supertuxkart: Update to 1.3.
    
    * gnu/packages/games.scm (supertuxkart): Update to 1.3.
    [source]: Download from github. Update snippet to remove different
    bundled libraries.
    [arguments]: Adjust configure-flags for new version.
    [inputs]: Add sqlite.
---
 gnu/packages/games.scm | 17 ++++++++++-------
 1 file changed, 10 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 58d28d7..3b8946e 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -3951,15 +3951,16 @@ This game is based on the GPL version of the famous 
game TuxRacer.")
 (define-public supertuxkart
   (package
     (name "supertuxkart")
-    (version "1.2")
+    (version "1.3")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "mirror://sourceforge/supertuxkart/SuperTuxKart/"
+       (uri (string-append "https://github.com/supertuxkart/stk-code/";
+                           "releases/download/"
                            version "/SuperTuxKart-" version "-src.tar.xz"))
        (sha256
         (base32
-         "0dvx56hmy6wdhl7m9dw8zc1n3jqfp05gnxl6zs1rbfdyzl5dybh5"))
+         "1z9z13zarv28h4jrmjna5hr6m9266pm7c2kgiwhqls01k06ypazf"))
        (modules '((guix build utils)))
        (snippet
         ;; Delete bundled library sources
@@ -3969,17 +3970,18 @@ This game is based on the GPL version of the famous 
game TuxRacer.")
            ;; here: http://forum.freegamedev.net/viewtopic.php?f=17&t=3906
            ;; FIXME: try to unbundle angelscript, libmcpp and libraqm
            (for-each delete-file-recursively
-                     '("lib/glew"
-                       "lib/wiiuse"
-                       "lib/enet"))
+                     '("lib/dnsc"
+                       "lib/enet"
+                       "lib/mojoal"
+                       "lib/wiiuse"))
            #t))))
     (build-system cmake-build-system)
     (arguments
      `(#:tests? #f ; no check target
        #:configure-flags
        (list "-DUSE_WIIUSE=0"
-             "-DUSE_SYSTEM_GLEW=TRUE"
              "-DUSE_SYSTEM_ENET=TRUE"
+             "-DUSE_CRYPTO_OPENSSL=TRUE"
              ;; In order to use the system ENet library, IPv6 support (added in
              ;; SuperTuxKart version 1.1) must be disabled.
              "-DUSE_IPV6=FALSE"
@@ -3997,6 +3999,7 @@ This game is based on the GPL version of the famous game 
TuxRacer.")
        ("mesa" ,mesa)
        ("openal" ,openal)
        ("sdl2" ,sdl2)
+       ("sqlite" ,sqlite)
        ("zlib" ,zlib)
        ;; The following input is needed to build the bundled and modified
        ;; version of irrlicht.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]