GNU bug report logs -
#78514
[PATCH] gnu: Add xjump-sdl.
Previous Next
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your message dated Sat, 24 May 2025 07:41:40 +0200
with message-id <e9560f4dcac8ed136db35b953933943d5a1b260e.camel <at> gmail.com>
and subject line Re: [bug#78514] [PATCH] gnu: Add xjump-sdl.
has caused the debbugs.gnu.org bug report #78514,
regarding [PATCH] gnu: Add xjump-sdl.
to be marked as done.
(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)
--
78514: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=78514
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
* gnu/packages/games.scm (xjump-sdl): New variable.
Change-Id: I4f4ac85849d50726c1f18bcf1d51e3b6725ba025
---
gnu/packages/games.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 62edc1bebf..5640b474a3 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -11292,6 +11292,39 @@ (define-public qcheckers
of the classic boardgame checkers (also known as draughts).")
(license license:gpl2+)))
+(define-public xjump-sdl
+ (package
+ (name "xjump-sdl")
+ (version "3.0.4")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/hugomg/xjump-sdl")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1macl4aq0zc93kbranzclqxh2jc40asn3bc8cpyywafzbxyha99y"))))
+ (build-system gnu-build-system)
+ (inputs (list sdl2))
+ (arguments
+ (list
+ #:tests? #f ;No tests.
+ #:phases
+ #~(modify-phases %standard-phases
+ (replace 'configure
+ (lambda* (#:key outputs #:allow-other-keys)
+ (invoke "./configure"
+ (string-append "--prefix="
+ (assoc-ref outputs "out"))
+ (string-append "CC="
+ #$(cc-for-target))))))))
+ (home-page "https://github.com/hugomg/xjump-sdl")
+ (synopsis "Falling tower game")
+ (description
+ "This is a reimplementation of the classic Xjump game, using SDL instead of Xlib.")
+ (license license:gpl3)))
+
(define-public xmoto
(package
(name "xmoto")
base-commit: b51bb28993c9d52d65df329ff1de452ba84d2497
--
2.49.0
[Message part 3 (message/rfc822, inline)]
Am Dienstag, dem 20.05.2025 um 22:38 +0200 schrieb Sergey Trofimov:
> * gnu/packages/games.scm (xjump-sdl): New variable.
>
> Change-Id: I4f4ac85849d50726c1f18bcf1d51e3b6725ba025
> ---
Reworded the description and pushed.
Thanks
This bug report was last modified 21 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.