[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
09/12: gnu: mygui: Use gexps.
From: |
guix-commits |
Subject: |
09/12: gnu: mygui: Use gexps. |
Date: |
Wed, 18 Dec 2024 09:49:20 -0500 (EST) |
apteryx pushed a commit to branch master
in repository guix.
commit a5850e73d634d13f5fabec2a85e42886292f7ab0
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Sat Nov 2 14:22:52 2024 +0900
gnu: mygui: Use gexps.
* gnu/packages/game-development.scm (mygui) [arguments]: Use gexps.
[description]: Fix MyGUI capitalization.
Change-Id: I99c693dfea6ff81bc2fc5411427fadd5911b3f31
---
gnu/packages/game-development.scm | 24 ++++++++++++------------
1 file changed, 12 insertions(+), 12 deletions(-)
diff --git a/gnu/packages/game-development.scm
b/gnu/packages/game-development.scm
index 01143c0793..5811ee9164 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -1817,18 +1817,18 @@ robust and compatible with many systems and operating
systems.")
(base32 "0nayw5shm5nly9bjp0g372kg5ia64dvn6mrmi1c6mdg0n6vgs9xa"))))
(build-system cmake-build-system)
(arguments
- '(#:tests? #f ; No test target
- #:configure-flags
- (list "-DMYGUI_INSTALL_DOCS=TRUE"
- (string-append "-DOGRE_INCLUDE_DIR="
- (assoc-ref %build-inputs "ogre")
- "/include/OGRE")
- ;; Demos and tools are Windows-specific:
- ;; https://github.com/MyGUI/mygui/issues/24.
- "-DMYGUI_BUILD_DEMOS=FALSE"
- "-DMYGUI_BUILD_TOOLS=FALSE")))
+ (list
+ #:tests? #f ;no test target
+ #:configure-flags
+ #~(list "-DMYGUI_INSTALL_DOCS=TRUE"
+ ;; Demos and tools are Windows-specific:
+ ;; https://github.com/MyGUI/mygui/issues/24.
+ "-DMYGUI_BUILD_DEMOS=FALSE"
+ "-DMYGUI_BUILD_TOOLS=FALSE")))
(native-inputs
- (list boost doxygen pkg-config))
+ (list boost
+ doxygen
+ pkg-config))
(inputs
(list font-dejavu
freetype
@@ -1839,7 +1839,7 @@ robust and compatible with many systems and operating
systems.")
(synopsis "Fast, flexible and simple GUI")
(description
"MyGUI is a library for creating Graphical User Interfaces (GUIs) for
games
-and 3D applications. The main goals of mygui are: speed, flexibility and ease
+and 3D applications. The main goals of MyGUI are: speed, flexibility and ease
of use.")
(home-page "http://mygui.info/")
(license license:expat)))
- branch master updated (bff32e20e7 -> 2b32a38098), guix-commits, 2024/12/18
- 01/12: gnu: imgui: Update to 1.91.4., guix-commits, 2024/12/18
- 07/12: gnu: bullet: Update to 3.25., guix-commits, 2024/12/18
- 10/12: system/examples: Fix git clone instructions in devel-hurd64.tmpl template., guix-commits, 2024/12/18
- 12/12: system/examples: Fix qemu invocation in comment of bare-hurd64.tmpl., guix-commits, 2024/12/18
- 06/12: gnu: Add ogre-next., guix-commits, 2024/12/18
- 04/12: gnu: ogre: Add support for Wayland, Vulkan and Bullet., guix-commits, 2024/12/18
- 02/12: gnu: ogre: Use gexps., guix-commits, 2024/12/18
- 03/12: gnu: ogre: Update to 14.3.2., guix-commits, 2024/12/18
- 08/12: gnu: bullet: Modernize., guix-commits, 2024/12/18
- 09/12: gnu: mygui: Use gexps.,
guix-commits <=
- 05/12: gnu: mygui: Update to 3.4.3., guix-commits, 2024/12/18
- 11/12: system/examples: Use latest QEMU for hurd examples., guix-commits, 2024/12/18