unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#42376] [PATCH] Add raylib.
@ 2020-07-15 14:25 trymonv
  2020-07-18 12:02 ` Jakub Kądziołka
  0 siblings, 1 reply; 4+ messages in thread
From: trymonv @ 2020-07-15 14:25 UTC (permalink / raw)
  To: 42376

  gnu/packages/game-development.scm | 34 +++++++++++++++++++++++++++++++
  1 file changed, 34 insertions(+)

diff --git a/gnu/packages/game-development.scm 
b/gnu/packages/game-development.scm
index e45980e7a0..cba9b5bd45 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -2489,3 +2489,37 @@ fully dynamic omnidirectional shadows, global 
illumination, HDR lighting,
  deferred shading, morphological / temporal / multisample anti-aliasing, 
and
  much more.")
        (license license:zlib))))
+
+(define-public raylib
+  (package
+    (name "raylib")
+    (version "3.0.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/raysan5/raylib/")
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                
"1chj7sril4l2dxh7flp5ndddydbbf1fhnqlydaysm4m6waxidxmr"))))
+    (build-system cmake-build-system)
+    (arguments '(#:configure-flags `("-DSHARED=OFF" "-DSTATIC=ON")
+                 #:tests? #f))
+    (inputs `())
+    (native-inputs `(("alsa-lib", alsa-lib)
+                     ("glu", glu)
+                     ("libx11", libx11)
+                     ("libxrandr", libxrandr)
+                     ("libxi", libxi)
+                     ("libxinerama", libxinerama)
+                     ("libxcursor", libxcursor)
+                     ("mesa", mesa)
+                     ("pkg-config", pkg-config)))
+    (synopsis "C library for videogame programming")
+    (description "raylib is a library which defines many data 
structures and
+methods useful for programming small video games or video game 
prototypes in
+plain C.  It tries to provide simple bindings for OpenGL in an attempt 
to
+conceal technical complexities behind an easy-to-use interface.")
+    (home-page "https://www.raylib.com/")
+    (license license:zlib)))
-- 
2.27.0




^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-05-28 21:55 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-15 14:25 [bug#42376] [PATCH] Add raylib trymonv
2020-07-18 12:02 ` Jakub Kądziołka
2020-09-24 15:45   ` Ludovic Courtès
2023-05-28 21:54     ` bug#42376: " Jelle Licht

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).