emacs-bug-tracker
[Top][All Lists]
Advanced

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

bug#42376: closed ([PATCH] Add raylib.)


From: GNU bug Tracking System
Subject: bug#42376: closed ([PATCH] Add raylib.)
Date: Sun, 28 May 2023 21:55:02 +0000

Your message dated Sun, 28 May 2023 23:54:20 +0200
with message-id <87fs7gp1f7.fsf@fsfe.org>
and subject line Re: bug#42376: [PATCH] Add raylib.
has caused the debbugs.gnu.org bug report #42376,
regarding [PATCH] Add raylib.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
42376: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=42376
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] Add raylib. Date: Wed, 15 Jul 2020 16:25:21 +0200 User-agent: Roundcube Webmail/1.3.10
 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



--- End Message ---
--- Begin Message --- Subject: Re: bug#42376: [PATCH] Add raylib. Date: Sun, 28 May 2023 23:54:20 +0200
Current master has raylib@4.5.0 packages, so closing.


--- End Message ---

reply via email to

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