gnu: mygui: Use gexps.

* gnu/packages/game-development.scm (mygui) [arguments]: Use gexps.
[description]: Fix MyGUI capitalization.

Change-Id: I99c693dfea6ff81bc2fc5411427fadd5911b3f31
This commit is contained in:
Maxim Cournoyer 2024-11-02 14:22:52 +09:00
parent 8b38443700
commit a5850e73d6
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -1817,18 +1817,18 @@ robust and compatible with many systems and operating systems.")
(base32 "0nayw5shm5nly9bjp0g372kg5ia64dvn6mrmi1c6mdg0n6vgs9xa")))) (base32 "0nayw5shm5nly9bjp0g372kg5ia64dvn6mrmi1c6mdg0n6vgs9xa"))))
(build-system cmake-build-system) (build-system cmake-build-system)
(arguments (arguments
'(#:tests? #f ; No test target (list
#:tests? #f ;no test target
#:configure-flags #:configure-flags
(list "-DMYGUI_INSTALL_DOCS=TRUE" #~(list "-DMYGUI_INSTALL_DOCS=TRUE"
(string-append "-DOGRE_INCLUDE_DIR="
(assoc-ref %build-inputs "ogre")
"/include/OGRE")
;; Demos and tools are Windows-specific: ;; Demos and tools are Windows-specific:
;; https://github.com/MyGUI/mygui/issues/24. ;; https://github.com/MyGUI/mygui/issues/24.
"-DMYGUI_BUILD_DEMOS=FALSE" "-DMYGUI_BUILD_DEMOS=FALSE"
"-DMYGUI_BUILD_TOOLS=FALSE"))) "-DMYGUI_BUILD_TOOLS=FALSE")))
(native-inputs (native-inputs
(list boost doxygen pkg-config)) (list boost
doxygen
pkg-config))
(inputs (inputs
(list font-dejavu (list font-dejavu
freetype freetype
@ -1839,7 +1839,7 @@ robust and compatible with many systems and operating systems.")
(synopsis "Fast, flexible and simple GUI") (synopsis "Fast, flexible and simple GUI")
(description (description
"MyGUI is a library for creating Graphical User Interfaces (GUIs) for games "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.") of use.")
(home-page "http://mygui.info/") (home-page "http://mygui.info/")
(license license:expat))) (license license:expat)))