summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2018-07-02 00:08:54 +0200
committerTobias Geerinckx-Rice <me@tobias.gr>2018-07-02 00:45:19 +0200
commit6e65eb3cad1d1148eade9ed2228cdea90d531a94 (patch)
tree79238aaa30e43a5ba5448d75774de42277cda37a /gnu
parent39f516cb839af6be3420ea02705c3f914308b90b (diff)
gnu: cdogs-sdl: Update to 0.6.7.
* gnu/packages/games.scm (cdogs-sdl): Update to 0.6.7. [source]: Use version tag.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/games.scm71
1 files changed, 34 insertions, 37 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 5f43aa154cd..0796e480010 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -3666,46 +3666,43 @@ emerges from a sewer hole and pulls her below ground.")
3666 license:cc-by-sa3.0))))) 3666 license:cc-by-sa3.0)))))
3667 3667
3668(define-public cdogs-sdl 3668(define-public cdogs-sdl
3669 ;; XXX: Use version 0.6.7 when it's available. 3669 (package
3670 (let ((commit "bab2031369b9ea2dbeb7eedbde10a43dd8ca83db") 3670 (name "cdogs-sdl")
3671 (revision "1")) 3671 (version "0.6.7")
3672 (package 3672 (source (origin
3673 (name "cdogs-sdl") 3673 (method git-fetch)
3674 (version (git-version "0.6.6" revision commit)) 3674 (uri (git-reference
3675 (source (origin 3675 (url "https://github.com/cxong/cdogs-sdl.git")
3676 (method git-fetch) 3676 (commit version)))
3677 (uri (git-reference 3677 (file-name (git-file-name name version))
3678 (url "https://github.com/cxong/cdogs-sdl.git") 3678 (sha256
3679 (commit commit))) 3679 (base32
3680 (file-name (git-file-name name version)) 3680 "1frafzsj3f83xkmn4llr7g728c82lcqi424ini1hv3gv5zjgpa15"))))
3681 (sha256 3681 (build-system cmake-build-system)
3682 (base32 3682 (arguments
3683 "09sfqhrrffhvxbhigvrxfmai52w01w3f9kjmixjhqvqlkhn77c9n")))) 3683 `(#:configure-flags
3684 (build-system cmake-build-system) 3684 (list (string-append "-DCDOGS_DATA_DIR="
3685 (arguments 3685 (assoc-ref %outputs "out")
3686 `(#:configure-flags 3686 "/share/cdogs-sdl/"))))
3687 (list (string-append "-DCDOGS_DATA_DIR=" 3687 (inputs
3688 (assoc-ref %outputs "out") 3688 `(("mesa" ,mesa)
3689 "/share/cdogs-sdl/")))) 3689 ("sdl2" ,sdl2)
3690 (inputs 3690 ("sdl2-image" ,sdl2-image)
3691 `(("mesa" ,mesa) 3691 ("sdl2-mixer" ,sdl2-mixer)))
3692 ("sdl2" ,sdl2) 3692 (home-page "https://cxong.github.io/cdogs-sdl/")
3693 ("sdl2-image" ,sdl2-image) 3693 (synopsis "Classic overhead run-and-gun game")
3694 ("sdl2-mixer" ,sdl2-mixer))) 3694 (description "C-Dogs SDL is a classic overhead run-and-gun game,
3695 (home-page "https://cxong.github.io/cdogs-sdl/")
3696 (synopsis "Classic overhead run-and-gun game")
3697 (description "C-Dogs SDL is a classic overhead run-and-gun game,
3698supporting up to 4 players in co-op and deathmatch modes. Customize your 3695supporting up to 4 players in co-op and deathmatch modes. Customize your
3699player, choose from many weapons, and blast, slide and slash your way through 3696player, choose from many weapons, and blast, slide and slash your way through
3700over 100 user-created campaigns.") 3697over 100 user-created campaigns.")
3701 ;; GPLv2+ for code (includes files under BSD-2 and BSD-3), 3698 ;; GPLv2+ for code (includes files under BSD-2 and BSD-3),
3702 ;; CC0/CC-BY/CC-BY-SA for assets. 3699 ;; CC0/CC-BY/CC-BY-SA for assets.
3703 (license (list license:gpl2+ 3700 (license (list license:gpl2+
3704 license:bsd-2 3701 license:bsd-2
3705 license:bsd-3 3702 license:bsd-3
3706 license:cc0 3703 license:cc0
3707 license:cc-by3.0 3704 license:cc-by3.0
3708 license:cc-by-sa3.0))))) 3705 license:cc-by-sa3.0))))
3709 3706
3710(define-public kiki 3707(define-public kiki
3711 (package 3708 (package