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

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

bug#59312: closed ([PATCH] gnu: Add csfml.)


From: GNU bug Tracking System
Subject: bug#59312: closed ([PATCH] gnu: Add csfml.)
Date: Sun, 04 Dec 2022 21:31:01 +0000

Your message dated Sun, 04 Dec 2022 22:30:10 +0100
with message-id <87h6yaluvx.fsf@gnu.org>
and subject line Re: bug#59312: [PATCH] gnu: Add csfml.
has caused the debbugs.gnu.org bug report #59312,
regarding [PATCH] gnu: Add csfml.
to be marked as done.

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


-- 
59312: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=59312
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: Add csfml. Date: Wed, 16 Nov 2022 16:35:01 +0000
* gnu/packages/game-development.scm (csfml): New variable.
---
 gnu/packages/game-development.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/game-development.scm 
b/gnu/packages/game-development.scm
index 90205a89ab..1252bfde26 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -735,6 +735,34 @@ (define-public sfml
 of five modules: system, window, graphics, audio and network.")
     (license license:zlib)))
 
+(define-public csfml
+  (package
+    (name "csfml")
+    (version "2.5.1")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/SFML/CSFML";)
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1wj1p798myyavld2xdhvvflb5h4nf1vgxxzs6nh5qad44vj9b3kb"))))
+    (build-system cmake-build-system)
+    (arguments
+     (list #:configure-flags #~(list "-DCSFML_BUILD_DOC=TRUE")
+           #:tests? #f)) ;no tests
+    (native-inputs (list doxygen))
+    (inputs (list sfml))
+    (synopsis "C bindings for the SFML multimedia library")
+    (description
+     "CSFML is the official C binding to the SFML libraries.  SFML provides a
+simple interface to the various computer components, to ease the development of
+games and multimedia applications.  It is composed of five modules: system,
+window, graphics, audio and network.")
+    (home-page "https://www.sfml-dev.org/download/csfml/";)
+    (license license:zlib)))
+
 (define-public sfxr
   (package
     (name "sfxr")
-- 
2.38.1




--- End Message ---
--- Begin Message --- Subject: Re: bug#59312: [PATCH] gnu: Add csfml. Date: Sun, 04 Dec 2022 22:30:10 +0100 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux)
Hi,

Antero Mejr <antero@mailbox.org> skribis:

> * gnu/packages/game-development.scm (csfml): New variable.

Applied, thanks!


--- End Message ---

reply via email to

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