[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#63435] Add vcmi 1.2.1 to games.scm
From: |
Vagrant Cascadian |
Subject: |
[bug#63435] Add vcmi 1.2.1 to games.scm |
Date: |
Wed, 10 May 2023 22:43:42 -0700 |
X-Debbugs-Cc: liliana.prikler@gmail.com, iyzsong@envs.net
The attached patch adds "vcmi", which is in many ways very similar to
the "fheroes2" package, in that it (currently) requires external
non-free assets, but the game engine itself is GPL2. They also both use
assets from the same game lineage (heroes of might and magic).
I struggled to get the tests to work, and they do not seem to be
terribly well maintained upstream. They are even disabled by default by
upstream. I did some very brief manual "testing" that it actually works,
at least!
I had successfully built with various qt*@6 packages, but they are not
currently building; it seems to support qt*@5 too.
Some things failed to build with gcc-11, so I tried gcc-12 and it
worked!
We probably want to try to apply Debian's "privacy-breach" patch to
disable phoning home, as well as the reproducible builds patch and some
additional reproducibility patches I am working on, but figured I would
submit the package to guix for review now, in case anyone else wants to
join me down this rabbit hole...
live well,
vagrant
From 94eabedcac6fb61ae1ddd77c6c28f89594586017 Mon Sep 17 00:00:00 2001
From: Vagrant Cascadian <vagrant@debian.org>
Date: Sun, 7 May 2023 17:43:33 -0700
Subject: [PATCH] gnu: Add vcmi 1.2.1.
FIXME review debian patches:
https://salsa.debian.org/games-team/vcmi/-/blob/master/debian/patches/disable-privacy-breach
https://salsa.debian.org/games-team/vcmi/-/blob/master/debian/patches/reproducible.patch
...and secrent as-yet-unsubmitted reproducibility patches...
https://salsa.debian.org/games-team/vcmi/-/blob/master/debian/patches/minizip_maxu32
X-Debbugs-Cc: liliana.prikler@gmail.com, iyzsong@envs.net
* gnu/packages/games.scm (vcmi): New variable.
---
gnu/packages/games.scm | 48 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 48 insertions(+)
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 2e3994543a..c2b60037cc 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -199,6 +199,7 @@ (define-module (gnu packages games)
#:use-module (gnu packages sqlite)
#:use-module (gnu packages squirrel)
#:use-module (gnu packages swig)
+ #:use-module (gnu packages tbb)
#:use-module (gnu packages tcl)
#:use-module (gnu packages terminals)
#:use-module (gnu packages texinfo)
@@ -11169,6 +11170,53 @@ (define-public fheroes2
play; it will look for them at @file{~/.local/share/fheroes2} folder.")
(license license:gpl2)))
+(define-public vcmi
+ (package
+ (name "vcmi")
+ (version "1.2.1")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/vcmi/vcmi")
+ (commit version)
+ (recursive? #t)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1nx3i078cxkak2ci514pf4pgi5269mp08njynsg35pin4yp3fn0p"))))
+ (build-system cmake-build-system)
+ (arguments
+ ;; Test suites do not seem well supported upstream and are disabled by
default.
+ ;; Pass -DENABLE_TEST to configure to enable.
+ `(#:tests? #f))
+ (native-inputs (list boost
+ ffmpeg
+ ;; Build errors with gcc-11
+ gcc-12
+ ;; googletest ; needed for tests, but tests are
disabled
+ libxkbcommon
+ luajit
+ minizip
+ pkg-config
+ python
+ ;; qtbase and qttools @6 not currently buildable but
may work ok
+ qtbase-5
+ qttools-5
+ sdl2
+ sdl2-mixer
+ sdl2-image
+ sdl2-ttf
+ tbb
+ vulkan-headers
+ zlib))
+ (home-page "https://vcmi.eu/")
+ (synopsis "Turn-based strategy game engine")
+ (description
+ "@code{vcmi} is an implementation of Heroes of Might and
+Magic III (aka HOMM3) game engine. It requires assets and game resources to
+play; it will look for them at @file{~/.local/share/vcmi} folder.")
+ (license license:gpl2)))
+
(define-public apricots
(package
(name "apricots")
base-commit: e2eb43f945fd467e9b55a4b3c91cd186cf32e268
--
2.39.2
signature.asc
Description: PGP signature
- [bug#63435] Add vcmi 1.2.1 to games.scm,
Vagrant Cascadian <=
- [bug#63435] Add vcmi 1.2.1 to games.scm, Liliana Marie Prikler, 2023/05/11
- [bug#63435] Add vcmi 1.2.1 to games.scm, Vagrant Cascadian, 2023/05/11
- [bug#63435] Add vcmi 1.2.1 to games.scm, Vagrant Cascadian, 2023/05/11
- [bug#63435] Add vcmi 1.2.1 to games.scm, Liliana Marie Prikler, 2023/05/11
- [bug#63435] Add vcmi 1.2.1 to games.scm, Vagrant Cascadian, 2023/05/12
- [bug#63435] Add vcmi 1.2.1 to games.scm, Liliana Marie Prikler, 2023/05/12
- [bug#63435] Add vcmi 1.2.1 to games.scm, Vagrant Cascadian, 2023/05/12
- [bug#63435] Add vcmi 1.2.1 to games.scm, Vagrant Cascadian, 2023/05/12
- [bug#63435] Add vcmi 1.2.1 to games.scm, Liliana Marie Prikler, 2023/05/13
- [bug#63435] Add vcmi 1.2.1 to games.scm, Vagrant Cascadian, 2023/05/14