gnu: gzochi: Build without '-Werror'.
[jackhill/guix/guix.git] / gnu / packages / game-development.scm
CommitLineData
6cb89466
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2014 Tomáš Čech <sleep_walker@suse.cz>
f586c877 3;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
1798e9ee 4;;; Copyright © 2015, 2018 Ludovic Courtès <ludo@gnu.org>
0f6139b1 5;;; Copyright © 2015 Alex Kost <alezost@gmail.com>
68c6110c 6;;; Copyright © 2015, 2016, 2017 David Thompson <davet@gnu.org>
9b811f69 7;;; Copyright © 2016, 2017, 2018 Efraim Flashner <efraim@flashner.co.il>
3c8ba11a 8;;; Copyright © 2016, 2017 Kei Kebreau <kkebreau@posteo.net>
19d311b4 9;;; Copyright © 2016 Ricardo Wurmus <rekado@elephly.net>
a812aff9 10;;; Copyright © 2016, 2017 Julian Graham <joolean@gmail.com>
7da5db8e 11;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
42d0d13d 12;;; Copyright © 2017 Manolis Fragkiskos Ragkousis <manolis837@gmail.com>
194b4e7d 13;;; Copyright © 2017 Peter Mikkelsen <petermikkelsen10@gmail.com>
3c399e9b 14;;; Copyright © 2017 Arun Isaac <arunisaac@systemreboot.net>
0ea2364f 15;;; Copyright © 2017 Rutger Helling <rhelling@mykolab.com>
5b8d2ace 16;;; Copyright © 2018 Marius Bakke <mbakke@fastmail.com>
6cb89466
17;;;
18;;; This file is part of GNU Guix.
19;;;
20;;; GNU Guix is free software; you can redistribute it and/or modify it
21;;; under the terms of the GNU General Public License as published by
22;;; the Free Software Foundation; either version 3 of the License, or (at
23;;; your option) any later version.
24;;;
25;;; GNU Guix is distributed in the hope that it will be useful, but
26;;; WITHOUT ANY WARRANTY; without even the implied warranty of
27;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28;;; GNU General Public License for more details.
29;;;
30;;; You should have received a copy of the GNU General Public License
31;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
32
33(define-module (gnu packages game-development)
b0910aad 34 #:use-module ((guix licenses) #:prefix license:)
6cb89466
35 #:use-module (guix packages)
36 #:use-module (guix download)
2a068aec 37 #:use-module (guix git-download)
be4d26f5 38 #:use-module (guix utils)
6cb89466 39 #:use-module (guix build-system cmake)
b0910aad 40 #:use-module (guix build-system gnu)
4bc37bf0 41 #:use-module (guix build-system python)
92b51d12 42 #:use-module (guix build-system scons)
b0910aad 43 #:use-module (gnu packages)
1297bc05 44 #:use-module (gnu packages audio)
c608fe8c 45 #:use-module (gnu packages autotools)
94a66dd9 46 #:use-module (gnu packages boost)
1297bc05 47 #:use-module (gnu packages compression)
2a068aec 48 #:use-module (gnu packages curl)
c24fff61 49 #:use-module (gnu packages databases)
99828fa7 50 #:use-module (gnu packages documentation)
531003be 51 #:use-module (gnu packages fltk)
42d0d13d 52 #:use-module (gnu packages fonts)
d2cc38b7 53 #:use-module (gnu packages fontutils)
324b0040 54 #:use-module (gnu packages freedesktop)
d2cc38b7 55 #:use-module (gnu packages fribidi)
1297bc05 56 #:use-module (gnu packages gl)
c24fff61 57 #:use-module (gnu packages glib)
1297bc05 58 #:use-module (gnu packages gnome)
c24fff61 59 #:use-module (gnu packages gnunet)
42d0d13d
MR
60 #:use-module (gnu packages graphics)
61 #:use-module (gnu packages graphviz)
1297bc05 62 #:use-module (gnu packages gtk)
c24fff61 63 #:use-module (gnu packages guile)
1297bc05
EF
64 #:use-module (gnu packages image)
65 #:use-module (gnu packages linux)
66 #:use-module (gnu packages lua)
c608fe8c 67 #:use-module (gnu packages m4)
1297bc05 68 #:use-module (gnu packages mp3)
c24fff61 69 #:use-module (gnu packages multiprecision)
4bc37bf0 70 #:use-module (gnu packages music)
c24fff61 71 #:use-module (gnu packages ncurses)
1297bc05
EF
72 #:use-module (gnu packages pkg-config)
73 #:use-module (gnu packages pulseaudio)
4bc37bf0 74 #:use-module (gnu packages python)
b0910aad 75 #:use-module (gnu packages qt)
1297bc05
EF
76 #:use-module (gnu packages sdl)
77 #:use-module (gnu packages tls)
4bc37bf0 78 #:use-module (gnu packages video)
2a068aec 79 #:use-module (gnu packages xdisorg)
83a4a70b 80 #:use-module (gnu packages xiph)
194b4e7d 81 #:use-module (gnu packages xml)
1297bc05 82 #:use-module (gnu packages xorg))
6cb89466
83
84(define-public bullet
85 (package
86 (name "bullet")
9b811f69 87 (version "2.87")
6cb89466
88 (source (origin
89 (method url-fetch)
937bc2d1
EF
90 (uri (string-append "https://github.com/bulletphysics/bullet3/"
91 "archive/" version ".tar.gz"))
92 (file-name (string-append name "-" version ".tar.gz"))
6cb89466
93 (sha256
94 (base32
9b811f69 95 "15azjc1jj8ak9ad7c5sbp9nv5gpqjsa0s9pc0bwy63w490f1b323"))))
6cb89466 96 (build-system cmake-build-system)
937bc2d1
EF
97 (arguments
98 '(#:configure-flags (list (string-append
99 "-DBUILD_SHARED_LIBS=ON "
100 "-DCMAKE_CXX_FLAGS=-fPIC "
101 (or (getenv "CXXFLAGS") "")))))
102 (inputs
103 `(("glu" ,glu)
104 ("libx11" ,libx11)
105 ("mesa" ,mesa)))
9b811f69 106 (home-page "https://pybullet.org/wordpress/")
6cb89466
107 (synopsis "3D physics engine library")
108 (description
109 "Bullet is a physics engine library usable for collision detection. It
110is used in some video games and movies.")
b0910aad
DT
111 (license license:zlib)))
112
1a0c4437
KK
113(define-public deutex
114 (package
115 (name "deutex")
ede75282 116 (version "5.1.1")
1a0c4437
KK
117 (source (origin
118 (method url-fetch)
119 (uri (string-append "https://github.com/Doom-Utils/" name
f7b60fdc
KK
120 "/releases/download/v" version "/"
121 name "-" version ".tar.xz"))
1a0c4437
KK
122 (sha256
123 (base32
ede75282 124 "0yqzlb3imkdzy8yd7xc69xk9ajf4dhiz3a9ssphyf4c9rcr440wj"))))
1a0c4437 125 (build-system gnu-build-system)
f7b60fdc 126 (native-inputs `(("asciidoc" ,asciidoc)))
1a0c4437
KK
127 (home-page "https://github.com/Doom-Utils/deutex")
128 (synopsis "WAD file composer for Doom and related games")
129 (description
130 "DeuTex is a wad composer for Doom, Heretic, Hexen and Strife. It can be
131used to extract the lumps of a wad and save them as individual files.
132Conversely, it can also build a wad from separate files. When extracting a
133lump to a file, it does not just copy the raw data, it converts it to an
134appropriate format (such as PPM for graphics, Sun audio for samples, etc.).
135Conversely, when it reads files for inclusion in pwads, it does the necessary
136conversions (for example, from PPM to Doom picture format). In addition,
137DeuTex has functions such as merging wads, etc.")
138 (license license:gpl2+)))
139
94a66dd9
KK
140(define-public grfcodec
141 (package
142 (name "grfcodec")
143 (version "6.0.6")
144 (source (origin
145 (method url-fetch)
146 (uri (string-append "http://binaries.openttd.org/extra/"
147 name "/" version "/" name "-" version
148 "-source.tar.xz"))
149 (sha256
150 (base32
151 "08admgnpqcsifpicbm56apgv360fxapqpbbsp10qyk8i22w1ivsk"))))
152 (build-system gnu-build-system)
153 (arguments
154 '(#:tests? #f ; no check target
155 #:phases
156 (modify-phases %standard-phases
157 (delete 'configure) ; no configure script
158 (replace 'install ; no install target
159 (lambda* (#:key outputs #:allow-other-keys)
160 (let* ((out (assoc-ref outputs "out"))
161 (bin (string-append out "/bin"))
162 (doc (string-append out "/share/doc"))
163 (man (string-append out "/share/man/man1")))
164 (for-each (lambda (file)
165 (install-file file bin))
166 '("grfcodec" "grfid" "grfstrip" "nforenum"))
167 (install-file "COPYING" doc)
168 (with-directory-excursion "docs"
169 (for-each (lambda (file)
170 (install-file (string-append file ".txt") doc))
171 '("auto_correct" "commands" "grf" "grfcodec" "grftut"
172 "readme" "readme.rpn"))
173 (for-each (lambda (file)
174 (install-file file man))
175 (find-files "." "\\.1"))))
176 #t)))))
177 (inputs
178 `(("boost" ,boost)
179 ("libpng" ,libpng)
180 ("zlib" ,zlib)))
181 (synopsis "GRF development tools")
182 (description
3d77785a 183 "The @dfn{Graphics Resource File} (GRF) development tools are a set of
94a66dd9
KK
184tools for developing (New)GRFs. It includes a number of smaller programs, each
185with a specific task:
186@enumerate
187@item @code{grfcodec} decodes and encodes GRF files for OpenTTD.
188@item @code{grfid} extracts the so-called \"GRF ID\" from a GRF.
189@item @code{grfstrip} strips all sprites from a GRF.
190@item @code{nforenum} checks NFO code for errors, making corrections when
191necessary.
192@end enumerate")
193 (home-page "http://dev.openttdcoop.org/projects/grfcodec")
194 ;; GRFCodec, GRFID, and GRFStrip are exclusively under the GPL2.
195 ;; NFORenum is under the GPL2+.
196 ;; The MD5 implementation contained in GRFID is under the zlib license.
197 (license (list license:gpl2 license:gpl2+ license:zlib))))
198
3c399e9b
AI
199(define-public catcodec
200 (package
201 (name "catcodec")
202 (version "1.0.5")
203 (source
204 (origin
205 (method url-fetch)
206 (uri (string-append "https://binaries.openttd.org/extra/catcodec/"
207 version "/catcodec-" version "-source.tar.xz"))
208 (sha256
209 (base32
210 "1qg0c2i4p29sxj0q6qp2jynlrzm5pphz2xhcjqlxa69ycrnlxzs7"))))
211 (build-system gnu-build-system)
212 (arguments
213 `(#:tests? #f ; no tests
214 #:make-flags (list (string-append "prefix=" %output))
215 #:phases (modify-phases %standard-phases
216 (delete 'configure))))
217 (home-page "http://dev.openttdcoop.org/projects/catcodec")
218 (synopsis "Encode/decode OpenTTD sounds")
219 (description "catcodec encodes and decodes sounds for OpenTTD. These
220sounds are not much more than some metadata (description and filename) and raw
221PCM data.")
222 (license license:gpl2)))
223
c24fff61
JG
224(define-public gzochi
225 (package
226 (name "gzochi")
a812aff9 227 (version "0.11.1")
c24fff61
JG
228 (source (origin
229 (method url-fetch)
230 (uri (string-append "mirror://savannah/gzochi/gzochi-"
231 version ".tar.gz"))
232 (sha256
233 (base32
a812aff9 234 "13j1m92zhxwkaaja3lg5x0h0b28mrrawdzk9d3hd19031akfxwb3"))))
c24fff61 235 (build-system gnu-build-system)
1798e9ee
LC
236 (arguments
237 '(#:phases (modify-phases %standard-phases
238 (add-before 'build 'no-Werror
239 (lambda _
240 ;; Don't abort builds due to things like GLib
241 ;; deprecation warnings.
242 (substitute* (find-files "." "^Makefile\\.in$")
243 (("-Werror") ""))
244 #t)))))
c24fff61
JG
245 (native-inputs `(("pkgconfig" ,pkg-config)))
246 (inputs `(("bdb" ,bdb)
247 ("glib" ,glib)
c24fff61
JG
248 ("guile" ,guile-2.0)
249 ("libmicrohttpd" ,libmicrohttpd)
250 ("ncurses" ,ncurses)
251 ("sdl" ,sdl)
252 ("zlib" ,zlib)))
340978d7 253 (home-page "https://www.nongnu.org/gzochi/")
c24fff61
JG
254 (synopsis "Scalable middleware for multiplayer games")
255 (description
256 "gzochi is a framework for developing massively multiplayer online games.
257A server container provides services to deployed games, which are written in
258Guile Scheme, that abstract and simplify some of the most challenging and
259error-prone aspects of online game development: Concurrency, data persistence,
260and network communications. A very thin client library can be embedded to
261provide connectivity for client applications written in any language.")
262 (license license:gpl3+)))
263
7357fcf2
KK
264(define-public nml
265 (package
266 (name "nml")
267 (version "0.4.4")
268 (source
269 (origin
270 (method url-fetch)
271 (uri (string-append "http://bundles.openttdcoop.org/nml/releases/"
272 version "/nml-" version ".tar.gz"))
273 (sha256
274 (base32
275 "0wk9ls5qyjwkra54rkj1gg94xbwzi7b84a5fh1ma1q7pbimi8rmg"))))
276 (build-system python-build-system)
277 (propagated-inputs
278 `(("python-pillow" ,python-pillow)
279 ("python-ply" ,python-ply)))
280 (home-page "http://dev.openttdcoop.org/projects/nml")
281 (synopsis "NML compiler")
282 (description
a7cbe727 283 "@dfn{NewGRF Meta Language} (NML) is a python-based compiler, capable of
7357fcf2
KK
284compiling NML files (along with their associated language, sound and graphic
285files) into @file{.grf} and/or @file{.nfo} files.")
286 (license license:gpl2+)))
287
45f8e7f7
KK
288(define-public python-sge-pygame
289 (package
290 (name "python-sge-pygame")
b1d1a10c 291 (version "1.5.1")
45f8e7f7
KK
292 (source
293 (origin
294 (method url-fetch)
7f652029
KK
295 (uri (string-append "mirror://savannah/stellarengine/"
296 (version-major+minor version) "/sge-pygame-"
297 version ".tar.gz"))
298 (file-name (string-append name "-" version ".tar.gz"))
45f8e7f7
KK
299 (sha256
300 (base32
b1d1a10c 301 "1rl3xjzh78sl0sq3xl8rl7cgp9v9v3h7s2pfwn7nj1vrmffzkcpd"))))
45f8e7f7
KK
302 (build-system python-build-system)
303 (propagated-inputs
304 `(("python-pygame" ,python-pygame)
81353514
KK
305 ("python-six" ,python-six)
306 ("python-uniseg" ,python-uniseg)))
45f8e7f7
KK
307 (home-page "http://stellarengine.nongnu.org")
308 (synopsis "2D game engine for Python")
309 (description
310 "The SGE Game Engine (\"SGE\", pronounced like \"Sage\") is a
ffbe2dc1 311general-purpose 2D game engine. It takes care of several details for you so
45f8e7f7
KK
312you can focus on the game itself. This makes more rapid game development
313possible, and it also makes the SGE easy to learn.")
314 (license license:lgpl3+)))
315
316(define-public python2-sge-pygame
317 (package-with-python2 python-sge-pygame))
318
1b775fd1
KK
319(define-public python-tmx
320 (package
321 (name "python-tmx")
95c1324a 322 (version "1.10")
1b775fd1
KK
323 (source
324 (origin
325 (method url-fetch)
be4d26f5
KK
326 (uri (string-append "mirror://savannah/python-tmx/"
327 (version-major+minor version) "/tmx-"
1b775fd1
KK
328 version ".tar.gz"))
329 (sha256
330 (base32
95c1324a 331 "073q0prg1nzlkga2b45vhscz374206qh4x68ccg00mxxwagn64z0"))))
1b775fd1
KK
332 (build-system python-build-system)
333 (propagated-inputs
334 `(("python-six" ,python-six)))
335 (home-page "http://python-tmx.nongnu.org")
336 (synopsis "Python library for the @code{Tiled} TMX format")
337 (description
338 "Python TMX reads and writes the @code{Tiled} TMX format in a simple way.
339This is useful for map editors or generic level editors, and it's also useful
340for using a map editor or generic level editor like Tiled to edit your game's
341levels.")
342 (license (list license:asl2.0
343 ;; Documentation (only available in the source tarball) is
344 ;; under the CC0 license.
345 license:cc0))))
346
347(define-public python2-tmx
348 (let ((python2-tmx (package-with-python2 python-tmx)))
349 (package
350 (inherit python2-tmx)
351 (propagated-inputs
352 `(("python2-pathlib" ,python2-pathlib)
353 ,@(package-propagated-inputs python2-tmx))))))
354
e99039b5
KK
355(define-public python-xsge
356 (package
357 (name "python-xsge")
cde208da 358 (version "2017.06.09")
e99039b5
KK
359 (source (origin
360 (method url-fetch)
795f3a00 361 (uri (string-append "mirror://savannah/xsge/xsge/xsge-"
e99039b5
KK
362 version ".tar.gz"))
363 (sha256
364 (base32
cde208da 365 "1vy7c2y7ihvmggs93zgfv2h3049s384wid8a5snzrrba8bhbb89p"))))
e99039b5
KK
366 (build-system python-build-system)
367 (arguments
368 '(#:phases
369 (modify-phases %standard-phases
370 ;; xSGE's setup.py script does not support one of the Python build
371 ;; system's default flags, "--single-version-externally-managed".
372 (replace 'install
373 (lambda* (#:key outputs #:allow-other-keys)
374 (zero?
375 (system* "python" "setup.py" "install"
376 (string-append "--prefix=" (assoc-ref outputs "out"))
377 "--root=/")))))
378 #:tests? #f)) ; no check target
379 (propagated-inputs
380 `(("python-sge-pygame" ,python-sge-pygame)
381 ("python-pygame" ,python-pygame)
382 ("python-six" ,python-six)
383 ("python-tmx" ,python-tmx)))
384 (home-page "http://xsge.nongnu.org")
385 (synopsis "Extensions for the SGE Game Engine")
386 (description
387 "xSGE is a collection of modules that make doing certain tasks with the SGE
388Game Engine easier. In addition to SGE's conveniences, the user has access to a
389GUI toolkit, lighting and physics frameworks and @code{Tiled} TMX format
390support.")
391 (license license:gpl3+)))
392
393(define-public python2-xsge
394 (package-with-python2 python-xsge))
395
b0910aad
DT
396(define-public tiled
397 (package
398 (name "tiled")
6de2af28 399 (version "1.1.4")
b0910aad
DT
400 (source (origin
401 (method url-fetch)
402 (uri (string-append "https://github.com/bjorn/tiled/archive/v"
403 version ".tar.gz"))
f586c877 404 (file-name (string-append name "-" version ".tar.gz"))
b0910aad
DT
405 (sha256
406 (base32
6de2af28 407 "0xb3zwcdk7khdrza6spl02g5n2xbij6nbszv8vi27vagjnmz1wxh"))))
b0910aad 408 (build-system gnu-build-system)
864cc7ef
RW
409 (inputs
410 `(("qtbase" ,qtbase)
411 ("qtsvg" ,qtsvg)
412 ("zlib" ,zlib)))
413 (native-inputs
414 `(("qttools" ,qttools)))
b0910aad
DT
415 (arguments
416 '(#:phases
d06fc008
EF
417 (modify-phases %standard-phases
418 (replace 'configure
864cc7ef
RW
419 (lambda* (#:key inputs outputs #:allow-other-keys)
420 (substitute* "translations/translations.pro"
421 (("LRELEASE =.*")
422 (string-append "LRELEASE = "
423 (assoc-ref inputs "qttools")
424 "/bin/lrelease\n")))
d06fc008
EF
425 (let ((out (assoc-ref outputs "out")))
426 (system* "qmake"
427 (string-append "PREFIX=" out))))))))
b0910aad
DT
428 (home-page "http://www.mapeditor.org/")
429 (synopsis "Tile map editor")
430 (description
431 "Tiled is a general purpose tile map editor. It is meant to be used for
432editing maps of any tile-based game, be it an RPG, a platformer or a Breakout
433clone.")
434
435 ;; As noted in 'COPYING', part of it is under GPLv2+, while the rest is
436 ;; under BSD-2.
437 (license license:gpl2+)))
5809ffcc
DT
438
439(define-public sfml
440 (package
441 (name "sfml")
7d1b5022 442 (version "2.3.2")
5809ffcc
DT
443 (source (origin
444 (method url-fetch)
7d1b5022
RW
445 ;; Do not fetch the archives from
446 ;; http://mirror0.sfml-dev.org/files/ because files there seem
447 ;; to be changed in place.
448 (uri (string-append "https://github.com/SFML/SFML/archive/"
449 version ".tar.gz"))
450 (file-name (string-append name "-" version ".tar.gz"))
5809ffcc
DT
451 (sha256
452 (base32
7d1b5022 453 "0k2fl5xk3ni2q8bsxl0551inx26ww3w6cp6hssvww0wfjdjcirsm"))))
5809ffcc
DT
454 (build-system cmake-build-system)
455 (arguments
a6e25a50
RW
456 '(#:configure-flags
457 (list "-DSFML_INSTALL_PKGCONFIG_FILES=TRUE")
458 #:tests? #f)) ; no tests
5809ffcc
DT
459 (inputs
460 `(("mesa" ,mesa)
461 ("glew" ,glew)
240f2785
RW
462 ("flac" ,flac)
463 ("libvorbis" ,libvorbis)
5809ffcc 464 ("libx11" ,libx11)
240f2785 465 ("xcb-util-image" ,xcb-util-image)
5809ffcc
DT
466 ("libxrandr" ,libxrandr)
467 ("eudev" ,eudev)
468 ("freetype" ,freetype)
469 ("libjpeg" ,libjpeg)
470 ("libsndfile" ,libsndfile)
471 ("openal" ,openal)))
167f0e82 472 (home-page "https://www.sfml-dev.org")
5809ffcc
DT
473 (synopsis "Simple and Fast Multimedia Library")
474 (description
475 "SFML provides a simple interface to the various computer components,
476to ease the development of games and multimedia applications. It is composed
477of five modules: system, window, graphics, audio and network.")
478 (license license:zlib)))
d620ea88
DT
479
480(define-public sfxr
481 (package
482 (name "sfxr")
483 (version "1.2.1")
484 (source (origin
485 (method url-fetch)
486 (uri (string-append "http://www.drpetter.se/files/sfxr-sdl-1.2.1.tar.gz"))
487 (sha256
488 (base32
489 "0dfqgid6wzzyyhc0ha94prxax59wx79hqr25r6if6by9cj4vx4ya"))))
490 (build-system gnu-build-system)
491 (arguments
492 `(#:phases (modify-phases %standard-phases
493 (delete 'configure) ; no configure script
494 (add-before 'build 'patch-makefile
495 (lambda* (#:key outputs #:allow-other-keys)
496 (let ((out (assoc-ref outputs "out")))
497 (substitute* "Makefile"
498 (("\\$\\(DESTDIR\\)/usr") out))
499 (substitute* "main.cpp"
500 (("/usr/share")
501 (string-append out "/share")))
502 #t))))
503 #:tests? #f)) ; no tests
504 (native-inputs
505 `(("pkg-config" ,pkg-config)
506 ("desktop-file-utils" ,desktop-file-utils)))
507 (inputs
508 `(("sdl" ,sdl)
509 ("gtk+" ,gtk+)))
510 (synopsis "Simple sound effect generator")
511 (description "Sfxr is a tool for quickly generating simple sound effects.
512Originally created for use in video game prototypes, it can generate random
513sounds from presets such as \"explosion\" or \"powerup\".")
514 (home-page "http://www.drpetter.se/project_sfxr.html")
515 (license license:expat)))
0f6139b1
AK
516
517(define-public physfs
518 (package
519 (name "physfs")
520 (version "2.0.3")
521 (source (origin
522 (method url-fetch)
523 (uri (string-append
167f0e82 524 "https://icculus.org/physfs/downloads/physfs-"
0f6139b1
AK
525 version ".tar.bz2"))
526 (file-name (string-append name "-" version ".tar.gz"))
527 (sha256
528 (base32
529 "0sbbyqzqhyf0g68fcvvv20n3928j0x6ik1njmhn1yigvq2bj11na"))))
530 (build-system cmake-build-system)
531 (arguments
532 '(#:tests? #f)) ; no check target
533 (inputs
534 `(("zlib" ,zlib)))
535 (native-inputs
536 `(("doxygen" ,doxygen)))
167f0e82 537 (home-page "https://icculus.org/physfs")
0f6139b1
AK
538 (synopsis "File system abstraction library")
539 (description
540 "PhysicsFS is a library to provide abstract access to various archives.
541It is intended for use in video games. For security, no file writing done
542through the PhysicsFS API can leave a defined @emph{write directory}. For
543file reading, a @emph{search path} with archives and directories is defined,
544and it becomes a single, transparent hierarchical file system. So archive
545files can be accessed in the same way as you access files directly on a disk,
546and it makes it easy to ship a new archive that will override a previous
547archive on a per-file basis.")
548 (license license:zlib)))
83a4a70b
DT
549
550(define-public love
551 (package
552 (name "love")
2c1d46b2 553 (version "0.10.2")
83a4a70b
DT
554 (source (origin
555 (method url-fetch)
556 (uri (string-append "https://bitbucket.org/rude/love/downloads/"
557 "love-" version "-linux-src.tar.gz"))
558 (sha256
559 (base32
130acf72
TGR
560 "11x346pw0gqad8nmkmywzx4xpcbfc3dslbrdw5x94n1i25mk0sxj"))
561 (modules '((guix build utils)))
562 (snippet
563 '(begin
564 ;; Build with luajit 2.1.0-beta3. Fixed in love 0.11.
565 ;; See <https://bitbucket.org/rude/love/issues/1277>.
566 (substitute* "src/libraries/luasocket/libluasocket/lua.h"
567 (("> 501") ">= 501"))
568 #t))))
83a4a70b
DT
569 (build-system gnu-build-system)
570 (native-inputs
571 `(("pkg-config" ,pkg-config)))
572 (inputs
573 `(("devil" ,devil)
574 ("freetype" ,freetype)
575 ("libmodplug" ,libmodplug)
05d48c52 576 ("libtheora" ,libtheora)
83a4a70b
DT
577 ("libvorbis" ,libvorbis)
578 ("luajit" ,luajit)
579 ("mesa" ,mesa)
580 ("mpg123" ,mpg123)
581 ("openal" ,openal)
582 ("physfs" ,physfs)
583 ("sdl2" ,sdl2)
584 ("zlib" ,zlib)))
585 (synopsis "2D game framework for Lua")
586 (description "LÖVE is a framework for making 2D games in the Lua
587programming language.")
588 (home-page "https://love2d.org/")
589 (license license:zlib)))
154f6156
DT
590
591(define-public allegro-4
592 (package
593 (name "allegro")
594 (version "4.4.2")
595 (source (origin
596 (method url-fetch)
3a12e21c
EF
597 (uri (string-append "https://github.com/liballeg/allegro5/"
598 "releases/download/" version "/allegro-"
599 version ".tar.gz"))
154f6156
DT
600 (sha256
601 (base32
602 "1p0ghkmpc4kwij1z9rzxfv7adnpy4ayi0ifahlns1bdzgmbyf88v"))))
603 (build-system cmake-build-system)
604 (arguments
605 '(#:phases
606 (modify-phases %standard-phases
607 (add-after 'unpack 'patch-build-system
608 (lambda _
609 ;; Build addons as shared libraries. Trying to set ADDON_LINKAGE
610 ;; via a command line option doesn't work because it is
611 ;; unconditionally clobbered in the build script.
612 (substitute* '("CMakeLists.txt")
613 (("ADDON_LINKAGE STATIC")
614 "ADDON_LINKAGE SHARED"))
615 #t)))))
616 (inputs
617 `(("glu" ,glu)
618 ("libpng" ,libpng)
619 ("libvorbis" ,libvorbis)
620 ("mesa" ,mesa)
621 ("zlib" ,zlib)))
622 (synopsis "Game programming library")
623 (description "Allegro is a library mainly aimed at video game and
624multimedia programming. It handles common, low-level tasks such as creating
625windows, accepting user input, loading data, drawing images, playing sounds,
626etc.")
627 (home-page "http://liballeg.org")
628 (license license:giftware)))
2a068aec 629
19d311b4
RW
630(define-public allegro
631 (package
632 (name "allegro")
8d2832e3 633 (version "5.2.2.0")
19d311b4
RW
634 (source (origin
635 (method url-fetch)
3a12e21c
EF
636 (uri (string-append "https://github.com/liballeg/allegro5/releases"
637 "/download/" version "/allegro-"
638 (if (equal? "0" (string-take-right version 1))
639 (string-drop-right version 2)
640 version)
641 ".tar.gz"))
19d311b4
RW
642 (sha256
643 (base32
8d2832e3 644 "1z4lrrlmn471wb7vzbd9iw7g379vj0k964vy1s64hcvv5bhvk1g2"))))
19d311b4
RW
645 (build-system cmake-build-system)
646 (arguments `(#:tests? #f)) ; there are no tests
647 (inputs
648 ;; FIXME: Add the following optional inputs: xinput2, opensl, dumb
649 `(("flac" ,flac)
650 ("freetype" ,freetype)
651 ("glu" ,glu)
652 ("gtk" ,gtk+-2)
653 ("libjpeg" ,libjpeg)
654 ("libpng" ,libpng)
655 ("libtheora" ,libtheora)
656 ("libvorbis" ,libvorbis)
657 ("libxcursor" ,libxcursor)
658 ("libxinerama" ,libxinerama)
659 ("libxrandr" ,libxrandr)
660 ("mesa" ,mesa)
661 ("openal" ,openal)
662 ("physfs" ,physfs)
663 ("zlib" ,zlib)))
664 (native-inputs
665 `(("pkg-config" ,pkg-config)))
666 (synopsis "Game programming library")
667 (description "Allegro is a library mainly aimed at video game and
668multimedia programming. It handles common, low-level tasks such as creating
669windows, accepting user input, loading data, drawing images, playing sounds,
670etc.")
671 (home-page "http://liballeg.org")
672 (license license:bsd-3)))
673
cdf8f391
RW
674(define-public allegro-5.0
675 (package (inherit allegro)
676 (name "allegro")
677 (version "5.0.11")
678 (source (origin
679 (method url-fetch)
3a12e21c
EF
680 (uri (string-append "https://github.com/liballeg/allegro5/releases"
681 "/download/" version "/allegro-"
682 (if (equal? "0" (string-take-right version 1))
683 (string-drop-right version 2)
684 version)
685 ".tar.gz"))
cdf8f391
RW
686 (sha256
687 (base32
688 "0cd51qrh97jrr0xdmnivqgwljpmizg8pixsgvc4blqqlaz4i9zj9"))))))
689
2a068aec
DT
690(define-public aseprite
691 (package
692 (name "aseprite")
82654d95 693 (version "1.1.7") ; After 1.1.7 the source is no longer distributed under the GPL.
ff4dc16e 694 ;; TODO: Unbundle third party software.
2a068aec 695 (source (origin
ff4dc16e
MB
696 (method url-fetch/zipbomb)
697 (uri (string-append "https://github.com/aseprite/aseprite"
698 "/releases/download/v" version
699 "/Aseprite-v" version "-Source.zip"))
2a068aec
DT
700 (sha256
701 (base32
82654d95 702 "1plss4i1lfxcznv9p0pip1bkhj7ipw7jlhsh5avd6dzw079l4nvv"))))
2a068aec
DT
703 (build-system cmake-build-system)
704 (arguments
705 '(#:configure-flags
706 ;; Use shared libraries instead of building bundled source.
707 (list "-DWITH_WEBP_SUPPORT=1"
708 "-DUSE_SHARED_CURL=1"
709 "-DUSE_SHARED_GIFLIB=1"
710 "-DUSE_SHARED_JPEGLIB=1"
711 "-DUSE_SHARED_ZLIB=1"
712 "-DUSE_SHARED_LIBPNG=1"
713 "-DUSE_SHARED_LIBLOADPNG=1"
714 "-DUSE_SHARED_LIBWEBP=1"
715 "-DUSE_SHARED_TINYXML=1"
716 "-DUSE_SHARED_PIXMAN=1"
717 "-DUSE_SHARED_FREETYPE=1"
718 "-DUSE_SHARED_ALLEGRO4=1"
719 "-DENABLE_UPDATER=0" ; no auto-updates
720 (string-append "-DFREETYPE_INCLUDE_DIR="
721 (assoc-ref %build-inputs "freetype")
de1d68a2 722 "/include/freetype2"))))
2a068aec
DT
723 (native-inputs
724 `(("pkg-config" ,pkg-config)))
725 ;; TODO: Use a patched Allegro 4 that supports window resizing. This
726 ;; patched version is bundled with Aseprite, but the patches should be
727 ;; extracted and applied on top of a standalone Allegro 4 package.
728 (inputs
729 `(("allegro" ,allegro-4)
730 ("curl" ,curl)
731 ("freetype" ,freetype)
732 ("giflib" ,giflib)
733 ("libjpeg" ,libjpeg)
734 ("libpng" ,libpng)
735 ("libwebp" ,libwebp)
736 ("libx11" ,libx11)
737 ("libxext" ,libxext)
738 ("libxxf86vm" ,libxxf86vm)
739 ("pixman" ,pixman)
740 ("tinyxml" ,tinyxml)
741 ("zlib" ,zlib)))
742 (synopsis "Animated sprite editor and pixel art tool")
743 (description "Aseprite is a tool for creating 2D pixel art for video
744games. In addition to basic pixel editing features, Aseprite can assist in
745the creation of animations, tiled graphics, texture atlases, and more.")
167f0e82 746 (home-page "https://www.aseprite.org/")
2a068aec 747 (license license:gpl2+)))
966dff3b
KY
748
749(define-public qqwing
750 (package
751 (name "qqwing")
752 (version "1.3.4")
753 (source (origin
754 (method url-fetch)
755 (uri (string-append
756 "https://qqwing.com/"
757 name "-" version ".tar.gz"))
758 (sha256
759 (base32
760 "0bw0papyqjg22z6irf36gs54y8236wa37b6gyn2h1spy65n76lqp"))))
761 (build-system gnu-build-system)
762 (native-inputs
763 `(("pkg-config" ,pkg-config)))
764 (home-page "https://qqwing.com/")
765 (synopsis "Sudoku puzzle solver and generator")
766 (description
767 "QQWing is a Sudoku puzzle generator and solver.
768It offers the following features:
769@enumerate
770@item Can solve 1000 puzzles in 1 second and generate 1000 puzzles in 25 seconds.
771@item Uses logic. Uses as many solve techniques as possible when solving
772 puzzles rather than guessing.
773@item Rates puzzles. Most generators don't give an indication of the difficulty
774 of a Sudoku puzzle. QQwing does.
775@item Can print solve instructions for any puzzle.
776@item Customizable output style, including a CSV style that is easy to
777 import into a database.
778@end enumerate")
779 (license license:gpl2+)))
d2cc38b7
KK
780
781(define-public quesoglc
782 (package
783 (name "quesoglc")
784 (version "0.7.2")
785 (source (origin
786 (method url-fetch)
787 (uri (string-append "mirror://sourceforge/" name "/" version "/"
788 name "-" version "-free.tar.bz2"))
789 (sha256
790 (base32
791 "08ddhywdy2qg17m592ng3yr0p1ih96irg8wg729g75hsxxq9ipks"))))
792 (build-system gnu-build-system)
793 (native-inputs `(("pkg-config" ,pkg-config)))
794 (inputs `(("fontconfig" ,fontconfig)
795 ("freeglute" ,freeglut)
796 ("fribidi" ,fribidi)
797 ("glew" ,glew)))
798 (home-page "http://quesoglc.sourceforge.net")
799 (synopsis "Implementation of the OpenGL Character Renderer (GLC)")
800 (description
801 "The OpenGL Character Renderer (GLC) is a state machine that provides
802OpenGL programs with character rendering services via an application programming
803interface (API).")
804 (license (list license:expat license:lgpl2.1+))))
4bc37bf0
KK
805
806(define-public python-pygame
807 (package
808 (name "python-pygame")
052f75da 809 (version "1.9.3")
4bc37bf0
KK
810 (source (origin
811 (method url-fetch)
052f75da 812 (uri (pypi-uri "pygame" version))
4bc37bf0
KK
813 (sha256
814 (base32
052f75da 815 "1hlydiyygl444bq5m5g8n3jsxsgrdyxlm42ipmfbw36wkf0j243m"))))
4bc37bf0
KK
816 (build-system python-build-system)
817 (arguments
052f75da 818 `(#:tests? #f ; Tests require pygame to be installed first.
4bc37bf0
KK
819 #:phases
820 (modify-phases %standard-phases
821 ;; Set the paths to the dependencies manually because
822 ;; the configure script does not allow passing them as
823 ;; parameters. This also means we can skip the configure
824 ;; phase.
825 (add-before 'build 'set-library-paths
826 (lambda* (#:key inputs outputs #:allow-other-keys)
827 (let ((sdl-ref (assoc-ref inputs "sdl"))
828 (font-ref (assoc-ref inputs "sdl-ttf"))
829 (image-ref (assoc-ref inputs "sdl-image"))
830 (mixer-ref (assoc-ref inputs "sdl-mixer"))
831 (smpeg-ref (assoc-ref inputs "libsmpeg"))
832 (png-ref (assoc-ref inputs "libpng"))
833 (jpeg-ref (assoc-ref inputs "libjpeg"))
052f75da 834 (freetype-ref (assoc-ref inputs "freetype"))
4bc37bf0
KK
835 (v4l-ref (assoc-ref inputs "v4l-utils"))
836 (out-ref (assoc-ref outputs "out")))
837 (substitute* "Setup.in"
838 (("SDL = -I/usr/include/SDL")
839 (string-append "SDL = -I" sdl-ref "/include/SDL -I.")))
840 (substitute* "Setup.in"
841 (("FONT = -lSDL_ttf")
842 (string-append "FONT = -I" font-ref "/include/SDL -L"
843 font-ref "/lib -lSDL_ttf")))
844 (substitute* "Setup.in"
845 (("IMAGE = -lSDL_image")
846 (string-append "IMAGE = -I" image-ref "/include/SDL -L"
847 image-ref "/lib -lSDL_image")))
848 (substitute* "Setup.in"
849 (("MIXER = -lSDL_mixer")
850 (string-append "MIXER = -I" mixer-ref "/include/SDL -L"
851 mixer-ref "/lib -lSDL_mixer")))
852 (substitute* "Setup.in"
853 (("SMPEG = -lsmpeg")
854 (string-append "SMPEG = -I" smpeg-ref "/include/smpeg -L"
855 smpeg-ref "/lib -lsmpeg")))
856 (substitute* "Setup.in"
857 (("PNG = -lpng")
858 (string-append "PNG = -I" png-ref "/include -L"
859 png-ref "/lib -lpng")))
860 (substitute* "Setup.in"
861 (("JPEG = -ljpeg")
862 (string-append "JPEG = -I" jpeg-ref "/include -L"
863 jpeg-ref "/lib -ljpeg")))
052f75da
DM
864
865 (substitute* "Setup.in"
866 (("FREETYPE = -lfreetype")
867 (string-append "FREETYPE = -I" freetype-ref "/include/freetype2 -L"
868 freetype-ref "/lib -lfreetype")))
869
4bc37bf0
KK
870 (substitute* "Setup.in"
871 (("^pypm") "#pypm"))
4bc37bf0
KK
872 ;; Create a path to a header file provided by v4l-utils.
873 (system* "mkdir" "linux")
874 (system* "ln" "--symbolic"
875 (string-append v4l-ref "/include/libv4l1-videodev.h")
876 "linux/videodev.h")
877 (system* "ln" "--symbolic" "Setup.in" "Setup")))))))
4bc37bf0 878 (inputs
052f75da
DM
879 `(("freetype" ,freetype)
880 ("sdl" ,sdl)
4bc37bf0
KK
881 ("sdl-image" ,sdl-image)
882 ("sdl-mixer" ,sdl-mixer)
883 ("sdl-ttf" ,sdl-ttf)
884 ("sdl-gfx" ,sdl-gfx)
885 ("libjpeg" ,libjpeg)
886 ("libpng" ,libpng)
887 ("libX11" ,libx11)
888 ("libsmpeg" ,libsmpeg)
889 ("portmidi" ,portmidi)
890 ("v4l-utils" ,v4l-utils)))
167f0e82 891 (home-page "https://www.pygame.org")
4bc37bf0
KK
892 (synopsis "SDL wrapper for Python")
893 (description "Pygame is a set of Python modules designed for writing games.
894Pygame adds functionality on top of the excellent SDL library. This allows you
895to create fully featured games and multimedia programs in the python language.")
896 (license (list license:bsd-2
897 ;; python numeric license as listed by Debian looks like
898 ;; an Expat-style license with a warranty disclaimer for
899 ;; the U.S. government and the University of California.
900 license:expat
901 license:lgpl2.0+
902 license:lgpl2.1+
903 license:gpl3+
904 license:psfl
905 license:public-domain
906 license:lgpl2.1+))))
052f75da
DM
907
908(define-public python2-pygame
909 (package-with-python2 python-pygame))
68c6110c
DT
910
911(define-public grafx2
912 (package
913 (name "grafx2")
914 (version "2.4")
915 (source (origin
916 (method url-fetch)
917 ;; XXX: There is no URL that contains the version. :(
918 (uri "http://pulkomandy.tk/projects/GrafX2/downloads/21")
919 (sha256
920 (base32
921 "0svsy6rqmdj11b400c242i2ixihyz0hds0dgicqz6g6dcgmcl62q"))))
922 (build-system gnu-build-system)
923 (arguments
924 '(#:phases
925 (modify-phases %standard-phases
926 (delete 'configure) ; no configure script
927 (add-before 'build 'change-to-src-directory
928 (lambda _
929 (chdir "src")
930 #t)))
931 #:make-flags
932 ;; SDL header files are referenced without the preceeding "SDL/".
933 (list (string-append "CFLAGS=-I"
934 (assoc-ref %build-inputs "sdl-union")
935 "/include/SDL")
936 (string-append "prefix="
937 (assoc-ref %outputs "out")))
938 #:tests? #f)) ; no check target
939 (native-inputs
940 `(("pkg-config" ,pkg-config)))
941 (inputs
942 `(("libpng" ,libpng)
943 ("lua" ,lua-5.1)
944 ("sdl-union" ,(sdl-union (list sdl sdl-image sdl-ttf)))))
945 (synopsis "Bitmap paint program")
946 (description "GrafX2 is a bitmap paint program inspired by the Amiga
7432d3ae 947programs Deluxe Paint and Brilliance. Specializing in 256-color drawing, it
68c6110c
DT
948includes a very large number of tools and effects that make it particularly
949suitable for pixel art, game graphics, and generally any detailed graphics
950painted with a mouse.")
951 (home-page "http://pulkomandy.tk/projects/GrafX2")
952 (license license:gpl2))) ; GPLv2 only
c608fe8c
MR
953
954(define-public ois
955 (package
956 (name "ois")
957 (version "1.3")
958 (source
959 (origin
960 ;; Development has moved to github and there are no recent tarball
961 ;; releases.
962 (method git-fetch)
963 (uri (git-reference
964 (url "https://github.com/wgois/OIS.git")
965 (commit "bb75ccc1aabc1c547195579963601ff6080ca2f2")))
966 (file-name (string-append name "-" version))
967 (sha256
968 (base32
969 "0w0pamjc3vj0jr718hysrw8x076fq6n9rd6wcb36sn2jd0lqvi98"))))
970 (build-system gnu-build-system)
971 (arguments
972 `(#:phases
973 (modify-phases %standard-phases
974 (add-after 'unpack 'bootstrap
975 (lambda _ (zero? (system* "sh" "bootstrap")))))))
976 (native-inputs
977 `(("autoconf" ,autoconf)
978 ("automake" ,automake)
979 ("libtool" ,libtool)
980 ("m4" ,m4)
981 ("pkg-config" ,pkg-config)))
982 (inputs
983 `(("libxaw" ,libxaw)))
984 (synopsis "Object Oriented Input System")
985 (description
986 "Cross Platform Object Oriented Input Lib System is a cross platform,
987simple solution for using all kinds of Input Devices (Keyboards, Mice,
988Joysticks, etc) and feedback devices (e.g. force feedback). Meant to be very
989robust and compatible with many systems and operating systems.")
990 (home-page "https://github.com/wgois/OIS")
991 (license license:zlib)))
42d0d13d
MR
992
993(define-public mygui
994 (package
995 (name "mygui")
996 (version "3.2.2")
997 (source
998 (origin
999 (method url-fetch)
1000 (uri
1001 (string-append "https://github.com/MyGUI/" name
1002 "/archive/MyGUI" version ".tar.gz"))
1003 (sha256
1004 (base32
1005 "13x7cydmj7gjmsg702sqjbfi53z265iv6j7binv3r6a7ibndfa0a"))))
1006 (build-system cmake-build-system)
1007 (arguments
1008 '(#:tests? #f ; No test target
1009 #:configure-flags
1010 (list "-DMYGUI_INSTALL_DOCS=TRUE"
1011 (string-append "-DOGRE_INCLUDE_DIR="
1012 (assoc-ref %build-inputs "ogre")
1013 "/include/OGRE"))))
1014 (native-inputs
1015 `(("boost" ,boost)
1016 ("doxygen" ,doxygen)
1017 ("pkg-config" ,pkg-config)))
1018 (inputs
1019 `(("font-dejavu" ,font-dejavu)
1020 ("freetype" ,freetype)
1021 ("graphviz" ,graphviz)
1022 ("libx11" ,libx11)
1023 ("ogre" ,ogre)
1024 ("ois" ,ois)))
1025 (synopsis "Fast, flexible and simple GUI")
1026 (description
1027 "MyGUI is a library for creating Graphical User Interfaces (GUIs) for games
1028and 3D applications. The main goals of mygui are: speed, flexibility and ease
1029of use.")
1030 (home-page "http://mygui.info/")
1031 (license license:expat)))
e9a599cd
MR
1032
1033(define-public openmw
1034 (package
1035 (name "openmw")
0ea2364f 1036 (version "0.43.0")
e9a599cd
MR
1037 (source
1038 (origin
1039 (method url-fetch)
1040 (uri
1041 (string-append "https://github.com/OpenMW/openmw/archive/"
1042 name "-" version ".tar.gz"))
1043 (sha256
1044 (base32
0ea2364f 1045 "11phjx7b3mv4n295xgq25lkcwq0mgr35i5k05hf1h77y6n6jbw64"))))
e9a599cd
MR
1046 (build-system cmake-build-system)
1047 (arguments
1048 `(#:tests? #f ; No test target
1049 #:configure-flags
1050 (list "-DDESIRED_QT_VERSION=5")))
1051 (native-inputs
1052 `(("boost" ,boost)
1053 ("doxygen" ,doxygen)
1054 ("pkg-config" ,pkg-config)))
1055 (inputs
1056 `(("bullet" ,bullet)
1057 ("ffmpeg" ,ffmpeg)
1058 ("libxt" ,libxt)
1059 ("mygui" ,mygui)
1060 ("openal" ,openal)
1061 ("openscenegraph" ,openscenegraph)
1062 ("qtbase" ,qtbase)
1063 ("sdl" ,sdl2)
1064 ("unshield" ,unshield)))
5a80c15c 1065 (synopsis "Re-implementation of the RPG Morrowind engine")
e9a599cd 1066 (description
5a80c15c
RW
1067 "OpenMW is a game engine which reimplements and extends the one that runs
1068the 2002 open-world RPG Morrowind. The engine comes with its own editor,
1069called OpenMW-CS which allows the user to edit or create their own original
1070games.")
e9a599cd
MR
1071 (home-page "https://openmw.org")
1072 (license license:gpl3)))
194b4e7d
PM
1073
1074(define-public godot
1075 (package
1076 (name "godot")
af574d82 1077 (version "3.0.2")
194b4e7d
PM
1078 (source (origin
1079 (method url-fetch)
1080 (uri
1081 (string-append "https://github.com/godotengine/godot/archive/"
1082 version "-stable.tar.gz"))
8311a844 1083 (file-name (string-append name "-" version ".tar.gz"))
194b4e7d 1084 (sha256
9766c6e2 1085 (base32
af574d82 1086 "0ldnk3j4w2kh454mzclmq8nk7zqrn758yrqq85i4kzljpkf93g0m"))
5b8d2ace
MB
1087 (modules '((guix build utils)))
1088 (snippet
1089 '(begin
1090 ;; Drop libraries that we take from Guix. Note that some
1091 ;; of these may be modified; see "thirdparty/README.md".
1092 (with-directory-excursion "thirdparty"
1093 (for-each delete-file-recursively
1094 '("freetype"
1095 "libogg"
1096 "libpng"
1097 "libtheora"
1098 "libvorbis"
1099 "libvpx"
1100 "libwebp"
1101 "openssl"
1102 "opus"
1103 "zlib"))
1104 #t)))))
92b51d12 1105 (build-system scons-build-system)
194b4e7d 1106 (arguments
92b51d12
AI
1107 `(#:scons ,scons-python2
1108 #:scons-flags (list "platform=x11"
d6e8a84e
EF
1109 ,@(if (string-prefix? "aarch64" (or (%current-target-system)
1110 (%current-system)))
1111 `("CCFLAGS=-DNO_THREADS")
1112 '())
92b51d12
AI
1113 ;; Avoid using many of the bundled libs.
1114 ;; Note: These options can be found in the SConstruct file.
1115 "builtin_freetype=no"
1116 "builtin_glew=no"
1117 "builtin_libmpdec=no"
1118 "builtin_libogg=no"
1119 "builtin_libpng=no"
1120 "builtin_libtheora=no"
1121 "builtin_libvorbis=no"
5b8d2ace 1122 "builtin_libvpx=no"
92b51d12
AI
1123 "builtin_libwebp=no"
1124 "builtin_openssl=no"
1125 "builtin_opus=no"
1126 "builtin_zlib=no")
1127 #:tests? #f ; There are no tests
194b4e7d
PM
1128 #:phases
1129 (modify-phases %standard-phases
194b4e7d
PM
1130 (add-after 'unpack 'scons-use-env
1131 (lambda _
1132 ;; Scons does not use the environment variables by default,
1133 ;; but this substitution makes it do so.
1134 (substitute* "SConstruct"
1135 (("env_base = Environment\\(tools=custom_tools\\)")
1136 (string-append
1137 "env_base = Environment(tools=custom_tools)\n"
1138 "env_base = Environment(ENV=os.environ)")))
1139 #t))
194b4e7d
PM
1140 (replace 'install
1141 (lambda* (#:key outputs #:allow-other-keys)
1142 (let* ((out (assoc-ref outputs "out"))
1143 (bin (string-append out "/bin")))
1144 (with-directory-excursion "bin"
1145 (if (file-exists? "godot.x11.tools.64")
1146 (rename-file "godot.x11.tools.64" "godot")
1147 (rename-file "godot.x11.tools.32" "godot"))
7da5db8e
TGR
1148 (install-file "godot" bin))
1149 #t)))
194b4e7d
PM
1150 (add-after 'install 'install-godot-desktop
1151 (lambda* (#:key outputs #:allow-other-keys)
1152 (let* ((out (assoc-ref outputs "out"))
1153 (desktop (string-append out "/share/applications"))
1154 (icon-dir (string-append out "/share/pixmaps")))
194b4e7d
PM
1155 (rename-file "icon.png" "godot.png")
1156 (install-file "godot.png" icon-dir)
7da5db8e 1157 (mkdir-p desktop)
194b4e7d
PM
1158 (with-output-to-file
1159 (string-append desktop "/godot.desktop")
1160 (lambda _
1161 (format #t
1162 "[Desktop Entry]~@
1163 Name=godot~@
1164 Comment=The godot game engine~@
1165 Exec=~a/bin/godot~@
1166 TryExec=~@*~a/bin/godot~@
1167 Icon=godot~@
1168 Type=Application~%"
1169 out)))
1170 #t))))))
92b51d12 1171 (native-inputs `(("pkg-config" ,pkg-config)))
194b4e7d
PM
1172 (inputs `(("alsa-lib" ,alsa-lib)
1173 ("freetype" ,freetype)
1174 ("glew" ,glew)
1175 ("glu" ,glu)
1176 ("libtheora" ,libtheora)
1177 ("libvorbis" ,libvorbis)
5b8d2ace 1178 ("libvpx" ,libvpx)
194b4e7d
PM
1179 ("libwebp" ,libwebp)
1180 ("libx11" ,libx11)
1181 ("libxcursor" ,libxcursor)
9766c6e2 1182 ("libxi" ,libxi)
194b4e7d
PM
1183 ("libxinerama" ,libxinerama)
1184 ("libxrandr" ,libxrandr)
1185 ("mesa" ,mesa)
1186 ("openssl" ,openssl)
1187 ("opusfile" ,opusfile)
92b51d12 1188 ("pulseaudio" ,pulseaudio)))
194b4e7d
PM
1189 (home-page "https://godotengine.org/")
1190 (synopsis "Advanced 2D and 3D game engine")
1191 (description
1192 "Godot is an advanced multi-platform game engine written in C++. If
1193features design tools such as a visual editor, can import 3D models and
1194provide high-quality 3D rendering, it contains an animation editor, and can be
1195scripted in a Python-like language.")
1196 (license license:expat)))
531003be 1197
1198(define-public eureka
1199 (package
1200 (name "eureka")
1201 (version "1.21")
1202 (source (origin
1203 (method url-fetch)
1204 (uri (string-append "mirror://sourceforge/eureka-editor/Eureka/"
1205 version "/eureka-"
1206 ;; version without dots e.g 1.21 => 121
1207 (string-join (string-split version #\.) "")
1208 "-source.tar.gz"))
1209 (sha256
1210 (base32
1211 "1a7pf7xi56fcz7jc8layih5gq5m66g2ss4x5j61kzgip07j6rkir"))))
1212 (build-system gnu-build-system)
1213 (arguments
1214 '(#:tests? #f
1215 #:make-flags
1216 (let ((out (assoc-ref %outputs "out")))
1217 (list (string-append "PREFIX=" out)))
1218 #:phases
1219 (modify-phases %standard-phases
1220 (delete 'configure)
1221 (add-before 'build 'prepare-install-directories
1222 (lambda* (#:key outputs #:allow-other-keys)
1223 (let ((out (assoc-ref outputs "out")))
1224 (mkdir-p (string-append out "/bin"))
1225 (mkdir-p (string-append out "/share"))
1226
1227 (with-fluids ((%default-port-encoding #f))
1228 (substitute* "./src/main.cc"
1229 (("/usr/local") out)))
1230
1231 (substitute* "Makefile"
1232 (("-o root") ""))))))))
1233 (inputs `(("mesa" ,mesa)
1234 ("libxft" ,libxft)
1235 ("libxinerama" ,libxinerama)
1236 ("libfontconfig" ,fontconfig)
1237 ("libjpeg" ,libjpeg)
1238 ("libpng" ,libpng)
1239 ("fltk" ,fltk)
1240 ("zlib" ,zlib)))
1241 (native-inputs `(("pkg-config" ,pkg-config)
1242 ("xdg-utils" ,xdg-utils)))
1243 (synopsis "Doom map editor")
1244 (description "Eureka is a map editor for the classic DOOM games, and a few
1245related games such as Heretic and Hexen. It comes with a 3d preview mode and
1246a 2D editor view.")
1247 (home-page "http://eureka-editor.sourceforge.net/")
1248 (license license:gpl2+)))