unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#74388] [PATCH] gnu: Add sdl3.
@ 2024-11-17  5:33 dan
  0 siblings, 0 replies; only message in thread
From: dan @ 2024-11-17  5:33 UTC (permalink / raw)
  To: 74388

* gnu/packages/sdl.scm (sdl3): New variable.

Change-Id: I3e8c3c6290078da18139ce5375a8e1902a360f4a
---
 gnu/packages/sdl.scm | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/gnu/packages/sdl.scm b/gnu/packages/sdl.scm
index 227846c042..0ed9d24f80 100644
--- a/gnu/packages/sdl.scm
+++ b/gnu/packages/sdl.scm
@@ -146,6 +146,40 @@ (define-public sdl2
     (home-page "https://libsdl.org/")
     (license license:bsd-3)))
 
+(define-public sdl3
+  (package
+    (inherit sdl2)
+    (name "sdl3")
+    (version "3.1.6")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/libsdl-org/SDL")
+                    ;; Change to release- when 3.2.0 is released.
+                    (commit (string-append "preview-" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1plyp0x8rvfwxpmfdjndj78kbfaisljjza700mvks4qyjjvmk2rh"))))
+    (build-system cmake-build-system)
+    (arguments
+     (list
+      #:tests? #f
+      #:configure-flags
+      #~(list "-DSDL_SHARED=ON"
+              "-DSDL_ALSA_SHARED=OFF"
+              "-DSDL_PULSEAUDIO_SHARED=OFF"
+              "-DSDL_X11_SHARED=OFF"
+              "-DSDL_WAYLAND_SHARED=OFF"
+              "-DSDL_KMSDRM=ON"
+              "-DSDL_KMSDRM_SHARED=OFF"
+              (string-append "-DCMAKE_INSTALL_RPATH="
+                             (string-join
+                              (list
+                               (string-append #$(this-package-input "eudev") "/lib")
+                               (string-append #$(this-package-input "vulkan-loader") "/lib"))
+                              ";")))))))
+
 (define-public sdl12-compat
   (package
     (name "sdl12-compat")

base-commit: 0e1ffbc7f5f060f89c890472377a6102f27f6e9b
-- 
2.46.0





^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2024-11-17  5:34 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-17  5:33 [bug#74388] [PATCH] gnu: Add sdl3 dan

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).