gnu: gzochi: Update to 0.10.
[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>
c24fff61 4;;; Copyright © 2015 Ludovic Courtès <ludo@gnu.org>
0f6139b1 5;;; Copyright © 2015 Alex Kost <alezost@gmail.com>
154f6156 6;;; Copyright © 2015, 2016 David Thompson <davet@gnu.org>
e8ea01d9 7;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
21f05134 8;;; Copyright © 2016 Kei Kebreau <kei@openmailbox.org>
19d311b4 9;;; Copyright © 2016 Ricardo Wurmus <rekado@elephly.net>
c8edd7e6 10;;; Copyright © 2016 Julian Graham <joolean@gmail.com>
6cb89466
11;;;
12;;; This file is part of GNU Guix.
13;;;
14;;; GNU Guix is free software; you can redistribute it and/or modify it
15;;; under the terms of the GNU General Public License as published by
16;;; the Free Software Foundation; either version 3 of the License, or (at
17;;; your option) any later version.
18;;;
19;;; GNU Guix is distributed in the hope that it will be useful, but
20;;; WITHOUT ANY WARRANTY; without even the implied warranty of
21;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22;;; GNU General Public License for more details.
23;;;
24;;; You should have received a copy of the GNU General Public License
25;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
26
27(define-module (gnu packages game-development)
b0910aad 28 #:use-module ((guix licenses) #:prefix license:)
6cb89466
29 #:use-module (guix packages)
30 #:use-module (guix download)
2a068aec 31 #:use-module (guix git-download)
6cb89466 32 #:use-module (guix build-system cmake)
b0910aad 33 #:use-module (guix build-system gnu)
4bc37bf0 34 #:use-module (guix build-system python)
b0910aad 35 #:use-module (gnu packages)
2a068aec 36 #:use-module (gnu packages curl)
c24fff61 37 #:use-module (gnu packages databases)
99828fa7 38 #:use-module (gnu packages documentation)
d2cc38b7
KK
39 #:use-module (gnu packages fontutils)
40 #:use-module (gnu packages fribidi)
c24fff61
JG
41 #:use-module (gnu packages glib)
42 #:use-module (gnu packages gnunet)
43 #:use-module (gnu packages guile)
44 #:use-module (gnu packages multiprecision)
4bc37bf0 45 #:use-module (gnu packages music)
c24fff61 46 #:use-module (gnu packages ncurses)
4bc37bf0 47 #:use-module (gnu packages python)
b0910aad 48 #:use-module (gnu packages qt)
4bc37bf0 49 #:use-module (gnu packages video)
5809ffcc
DT
50 #:use-module (gnu packages compression)
51 #:use-module (gnu packages zip)
52 #:use-module (gnu packages gl)
53 #:use-module (gnu packages linux)
54 #:use-module (gnu packages xorg)
2a068aec 55 #:use-module (gnu packages xdisorg)
5809ffcc
DT
56 #:use-module (gnu packages fontutils)
57 #:use-module (gnu packages image)
58 #:use-module (gnu packages audio)
d620ea88
DT
59 #:use-module (gnu packages pulseaudio)
60 #:use-module (gnu packages gnome)
61 #:use-module (gnu packages gtk)
62 #:use-module (gnu packages sdl)
240f2785 63 #:use-module (gnu packages pkg-config)
83a4a70b
DT
64 #:use-module (gnu packages xiph)
65 #:use-module (gnu packages lua)
2a068aec
DT
66 #:use-module (gnu packages mp3)
67 #:use-module (gnu packages xml))
6cb89466
68
69(define-public bullet
70 (package
71 (name "bullet")
72 (version "2.82-r2704")
73 (source (origin
74 (method url-fetch)
75 (uri (string-append "https://bullet.googlecode.com/files/bullet-"
76 version ".tgz"))
77 (sha256
78 (base32
79 "1lnfksxa9b1slyfcxys313ymsllvbsnxh9np06azkbgpfvmwkr37"))))
80 (build-system cmake-build-system)
81 (arguments '(#:tests? #f ; no 'test' target
82 #:configure-flags (list
83 (string-append
84 "-DCMAKE_CXX_FLAGS=-fPIC "
85 (or (getenv "CXXFLAGS") "")))))
86 (home-page "http://bulletphysics.org/")
87 (synopsis "3D physics engine library")
88 (description
89 "Bullet is a physics engine library usable for collision detection. It
90is used in some video games and movies.")
b0910aad
DT
91 (license license:zlib)))
92
c24fff61
JG
93(define-public gzochi
94 (package
95 (name "gzochi")
c8edd7e6 96 (version "0.10")
c24fff61
JG
97 (source (origin
98 (method url-fetch)
99 (uri (string-append "mirror://savannah/gzochi/gzochi-"
100 version ".tar.gz"))
101 (sha256
102 (base32
c8edd7e6 103 "055m7ywgl48ljwxf0kjhl76ldck890y5afdwjhk5s3p65xyaxh0k"))))
c24fff61
JG
104 (build-system gnu-build-system)
105 (arguments
106 '(#:phases (modify-phases %standard-phases
107 (add-before 'configure 'remove-Werror
108 (lambda _
109 ;; We can't build with '-Werror', notably
110 ;; because deprecated functions of
111 ;; libmicrohttpd are being used.
112 (substitute* (find-files "." "^Makefile\\.in$")
113 (("-Werror")
114 ""))
115 #t)))))
116 (native-inputs `(("pkgconfig" ,pkg-config)))
117 (inputs `(("bdb" ,bdb)
118 ("glib" ,glib)
c24fff61
JG
119 ("guile" ,guile-2.0)
120 ("libmicrohttpd" ,libmicrohttpd)
121 ("ncurses" ,ncurses)
122 ("sdl" ,sdl)
123 ("zlib" ,zlib)))
124 (home-page "http://www.nongnu.org/gzochi/")
125 (synopsis "Scalable middleware for multiplayer games")
126 (description
127 "gzochi is a framework for developing massively multiplayer online games.
128A server container provides services to deployed games, which are written in
129Guile Scheme, that abstract and simplify some of the most challenging and
130error-prone aspects of online game development: Concurrency, data persistence,
131and network communications. A very thin client library can be embedded to
132provide connectivity for client applications written in any language.")
133 (license license:gpl3+)))
134
b0910aad
DT
135(define-public tiled
136 (package
137 (name "tiled")
738fea30 138 (version "0.16.1")
b0910aad
DT
139 (source (origin
140 (method url-fetch)
141 (uri (string-append "https://github.com/bjorn/tiled/archive/v"
142 version ".tar.gz"))
f586c877 143 (file-name (string-append name "-" version ".tar.gz"))
b0910aad
DT
144 (sha256
145 (base32
738fea30 146 "0s1i6yhm1z9ayzjh8cprcc9jvj5m87l9snyqg6w7zlj3q9zn4rn6"))))
b0910aad
DT
147 (build-system gnu-build-system)
148 (inputs `(("qt" ,qt)
149 ("zlib" ,zlib)))
150 (arguments
151 '(#:phases
d06fc008
EF
152 (modify-phases %standard-phases
153 (replace 'configure
154 (lambda* (#:key outputs #:allow-other-keys)
155 (let ((out (assoc-ref outputs "out")))
156 (system* "qmake"
157 (string-append "PREFIX=" out))))))))
b0910aad
DT
158 (home-page "http://www.mapeditor.org/")
159 (synopsis "Tile map editor")
160 (description
161 "Tiled is a general purpose tile map editor. It is meant to be used for
162editing maps of any tile-based game, be it an RPG, a platformer or a Breakout
163clone.")
164
165 ;; As noted in 'COPYING', part of it is under GPLv2+, while the rest is
166 ;; under BSD-2.
167 (license license:gpl2+)))
5809ffcc
DT
168
169(define-public sfml
170 (package
171 (name "sfml")
7d1b5022 172 (version "2.3.2")
5809ffcc
DT
173 (source (origin
174 (method url-fetch)
7d1b5022
RW
175 ;; Do not fetch the archives from
176 ;; http://mirror0.sfml-dev.org/files/ because files there seem
177 ;; to be changed in place.
178 (uri (string-append "https://github.com/SFML/SFML/archive/"
179 version ".tar.gz"))
180 (file-name (string-append name "-" version ".tar.gz"))
5809ffcc
DT
181 (sha256
182 (base32
7d1b5022 183 "0k2fl5xk3ni2q8bsxl0551inx26ww3w6cp6hssvww0wfjdjcirsm"))))
5809ffcc
DT
184 (build-system cmake-build-system)
185 (arguments
186 '(#:tests? #f)) ; no tests
5809ffcc
DT
187 (inputs
188 `(("mesa" ,mesa)
189 ("glew" ,glew)
240f2785
RW
190 ("flac" ,flac)
191 ("libvorbis" ,libvorbis)
5809ffcc 192 ("libx11" ,libx11)
240f2785 193 ("xcb-util-image" ,xcb-util-image)
5809ffcc
DT
194 ("libxrandr" ,libxrandr)
195 ("eudev" ,eudev)
196 ("freetype" ,freetype)
197 ("libjpeg" ,libjpeg)
198 ("libsndfile" ,libsndfile)
199 ("openal" ,openal)))
200 (home-page "http://www.sfml-dev.org")
201 (synopsis "Simple and Fast Multimedia Library")
202 (description
203 "SFML provides a simple interface to the various computer components,
204to ease the development of games and multimedia applications. It is composed
205of five modules: system, window, graphics, audio and network.")
206 (license license:zlib)))
d620ea88
DT
207
208(define-public sfxr
209 (package
210 (name "sfxr")
211 (version "1.2.1")
212 (source (origin
213 (method url-fetch)
214 (uri (string-append "http://www.drpetter.se/files/sfxr-sdl-1.2.1.tar.gz"))
215 (sha256
216 (base32
217 "0dfqgid6wzzyyhc0ha94prxax59wx79hqr25r6if6by9cj4vx4ya"))))
218 (build-system gnu-build-system)
219 (arguments
220 `(#:phases (modify-phases %standard-phases
221 (delete 'configure) ; no configure script
222 (add-before 'build 'patch-makefile
223 (lambda* (#:key outputs #:allow-other-keys)
224 (let ((out (assoc-ref outputs "out")))
225 (substitute* "Makefile"
226 (("\\$\\(DESTDIR\\)/usr") out))
227 (substitute* "main.cpp"
228 (("/usr/share")
229 (string-append out "/share")))
230 #t))))
231 #:tests? #f)) ; no tests
232 (native-inputs
233 `(("pkg-config" ,pkg-config)
234 ("desktop-file-utils" ,desktop-file-utils)))
235 (inputs
236 `(("sdl" ,sdl)
237 ("gtk+" ,gtk+)))
238 (synopsis "Simple sound effect generator")
239 (description "Sfxr is a tool for quickly generating simple sound effects.
240Originally created for use in video game prototypes, it can generate random
241sounds from presets such as \"explosion\" or \"powerup\".")
242 (home-page "http://www.drpetter.se/project_sfxr.html")
243 (license license:expat)))
0f6139b1
AK
244
245(define-public physfs
246 (package
247 (name "physfs")
248 (version "2.0.3")
249 (source (origin
250 (method url-fetch)
251 (uri (string-append
252 "http://icculus.org/physfs/downloads/physfs-"
253 version ".tar.bz2"))
254 (file-name (string-append name "-" version ".tar.gz"))
255 (sha256
256 (base32
257 "0sbbyqzqhyf0g68fcvvv20n3928j0x6ik1njmhn1yigvq2bj11na"))))
258 (build-system cmake-build-system)
259 (arguments
260 '(#:tests? #f)) ; no check target
261 (inputs
262 `(("zlib" ,zlib)))
263 (native-inputs
264 `(("doxygen" ,doxygen)))
265 (home-page "http://icculus.org/physfs")
266 (synopsis "File system abstraction library")
267 (description
268 "PhysicsFS is a library to provide abstract access to various archives.
269It is intended for use in video games. For security, no file writing done
270through the PhysicsFS API can leave a defined @emph{write directory}. For
271file reading, a @emph{search path} with archives and directories is defined,
272and it becomes a single, transparent hierarchical file system. So archive
273files can be accessed in the same way as you access files directly on a disk,
274and it makes it easy to ship a new archive that will override a previous
275archive on a per-file basis.")
276 (license license:zlib)))
83a4a70b
DT
277
278(define-public love
279 (package
280 (name "love")
e91fd7f5 281 (version "0.10.1")
83a4a70b
DT
282 (source (origin
283 (method url-fetch)
284 (uri (string-append "https://bitbucket.org/rude/love/downloads/"
285 "love-" version "-linux-src.tar.gz"))
286 (sha256
287 (base32
e91fd7f5 288 "1ys18m7c4994k5s7avqlf17sc2icx5zgvfplz504q1ka16hwkc52"))))
83a4a70b
DT
289 (build-system gnu-build-system)
290 (native-inputs
291 `(("pkg-config" ,pkg-config)))
292 (inputs
293 `(("devil" ,devil)
294 ("freetype" ,freetype)
295 ("libmodplug" ,libmodplug)
05d48c52 296 ("libtheora" ,libtheora)
83a4a70b
DT
297 ("libvorbis" ,libvorbis)
298 ("luajit" ,luajit)
299 ("mesa" ,mesa)
300 ("mpg123" ,mpg123)
301 ("openal" ,openal)
302 ("physfs" ,physfs)
303 ("sdl2" ,sdl2)
304 ("zlib" ,zlib)))
305 (synopsis "2D game framework for Lua")
306 (description "LÖVE is a framework for making 2D games in the Lua
307programming language.")
308 (home-page "https://love2d.org/")
309 (license license:zlib)))
154f6156
DT
310
311(define-public allegro-4
312 (package
313 (name "allegro")
314 (version "4.4.2")
315 (source (origin
316 (method url-fetch)
317 (uri (string-append "http://download.gna.org/allegro/allegro/"
318 version "/allegro-" version ".tar.gz"))
319 (sha256
320 (base32
321 "1p0ghkmpc4kwij1z9rzxfv7adnpy4ayi0ifahlns1bdzgmbyf88v"))))
322 (build-system cmake-build-system)
323 (arguments
324 '(#:phases
325 (modify-phases %standard-phases
326 (add-after 'unpack 'patch-build-system
327 (lambda _
328 ;; Build addons as shared libraries. Trying to set ADDON_LINKAGE
329 ;; via a command line option doesn't work because it is
330 ;; unconditionally clobbered in the build script.
331 (substitute* '("CMakeLists.txt")
332 (("ADDON_LINKAGE STATIC")
333 "ADDON_LINKAGE SHARED"))
334 #t)))))
335 (inputs
336 `(("glu" ,glu)
337 ("libpng" ,libpng)
338 ("libvorbis" ,libvorbis)
339 ("mesa" ,mesa)
340 ("zlib" ,zlib)))
341 (synopsis "Game programming library")
342 (description "Allegro is a library mainly aimed at video game and
343multimedia programming. It handles common, low-level tasks such as creating
344windows, accepting user input, loading data, drawing images, playing sounds,
345etc.")
346 (home-page "http://liballeg.org")
347 (license license:giftware)))
2a068aec 348
19d311b4
RW
349(define-public allegro
350 (package
351 (name "allegro")
352 (version "5.2.0")
353 (source (origin
354 (method url-fetch)
355 (uri (string-append "http://download.gna.org/allegro/allegro/"
356 version "/allegro-" version ".tar.gz"))
357 (sha256
358 (base32
359 "1mwzgzc4nb5k5zkbq7yrc6hg63yxq3wk69lmjag1h19x8b6njnmg"))))
360 (build-system cmake-build-system)
361 (arguments `(#:tests? #f)) ; there are no tests
362 (inputs
363 ;; FIXME: Add the following optional inputs: xinput2, opensl, dumb
364 `(("flac" ,flac)
365 ("freetype" ,freetype)
366 ("glu" ,glu)
367 ("gtk" ,gtk+-2)
368 ("libjpeg" ,libjpeg)
369 ("libpng" ,libpng)
370 ("libtheora" ,libtheora)
371 ("libvorbis" ,libvorbis)
372 ("libxcursor" ,libxcursor)
373 ("libxinerama" ,libxinerama)
374 ("libxrandr" ,libxrandr)
375 ("mesa" ,mesa)
376 ("openal" ,openal)
377 ("physfs" ,physfs)
378 ("zlib" ,zlib)))
379 (native-inputs
380 `(("pkg-config" ,pkg-config)))
381 (synopsis "Game programming library")
382 (description "Allegro is a library mainly aimed at video game and
383multimedia programming. It handles common, low-level tasks such as creating
384windows, accepting user input, loading data, drawing images, playing sounds,
385etc.")
386 (home-page "http://liballeg.org")
387 (license license:bsd-3)))
388
cdf8f391
RW
389(define-public allegro-5.0
390 (package (inherit allegro)
391 (name "allegro")
392 (version "5.0.11")
393 (source (origin
394 (method url-fetch)
395 (uri (string-append "http://download.gna.org/allegro/allegro/"
396 version "/allegro-" version ".tar.gz"))
397 (sha256
398 (base32
399 "0cd51qrh97jrr0xdmnivqgwljpmizg8pixsgvc4blqqlaz4i9zj9"))))))
400
2a068aec
DT
401(define-public aseprite
402 (package
403 (name "aseprite")
404 (version "1.1.1")
405 ;; The release tarball isn't good enough because it's missing some
406 ;; necessary code that is only in git submodules.
407 (source (origin
408 (method git-fetch)
409 (uri (git-reference
410 (url "https://github.com/aseprite/aseprite.git")
411 (commit "v1.1.1")
412 (recursive? #t)))
413 (sha256
414 (base32
415 "1yr0l3bc68lyrffrzxgw98zznv8yz5ldl98lyvp6s5grny4s4jyk"))))
416 (build-system cmake-build-system)
417 (arguments
418 '(#:configure-flags
419 ;; Use shared libraries instead of building bundled source.
420 (list "-DWITH_WEBP_SUPPORT=1"
421 "-DUSE_SHARED_CURL=1"
422 "-DUSE_SHARED_GIFLIB=1"
423 "-DUSE_SHARED_JPEGLIB=1"
424 "-DUSE_SHARED_ZLIB=1"
425 "-DUSE_SHARED_LIBPNG=1"
426 "-DUSE_SHARED_LIBLOADPNG=1"
427 "-DUSE_SHARED_LIBWEBP=1"
428 "-DUSE_SHARED_TINYXML=1"
429 "-DUSE_SHARED_PIXMAN=1"
430 "-DUSE_SHARED_FREETYPE=1"
431 "-DUSE_SHARED_ALLEGRO4=1"
432 "-DENABLE_UPDATER=0" ; no auto-updates
433 (string-append "-DFREETYPE_INCLUDE_DIR="
434 (assoc-ref %build-inputs "freetype")
de1d68a2 435 "/include/freetype2"))))
2a068aec
DT
436 (native-inputs
437 `(("pkg-config" ,pkg-config)))
438 ;; TODO: Use a patched Allegro 4 that supports window resizing. This
439 ;; patched version is bundled with Aseprite, but the patches should be
440 ;; extracted and applied on top of a standalone Allegro 4 package.
441 (inputs
442 `(("allegro" ,allegro-4)
443 ("curl" ,curl)
444 ("freetype" ,freetype)
445 ("giflib" ,giflib)
446 ("libjpeg" ,libjpeg)
447 ("libpng" ,libpng)
448 ("libwebp" ,libwebp)
449 ("libx11" ,libx11)
450 ("libxext" ,libxext)
451 ("libxxf86vm" ,libxxf86vm)
452 ("pixman" ,pixman)
453 ("tinyxml" ,tinyxml)
454 ("zlib" ,zlib)))
455 (synopsis "Animated sprite editor and pixel art tool")
456 (description "Aseprite is a tool for creating 2D pixel art for video
457games. In addition to basic pixel editing features, Aseprite can assist in
458the creation of animations, tiled graphics, texture atlases, and more.")
459 (home-page "http://www.aseprite.org/")
460 (license license:gpl2+)))
966dff3b
KY
461
462(define-public qqwing
463 (package
464 (name "qqwing")
465 (version "1.3.4")
466 (source (origin
467 (method url-fetch)
468 (uri (string-append
469 "https://qqwing.com/"
470 name "-" version ".tar.gz"))
471 (sha256
472 (base32
473 "0bw0papyqjg22z6irf36gs54y8236wa37b6gyn2h1spy65n76lqp"))))
474 (build-system gnu-build-system)
475 (native-inputs
476 `(("pkg-config" ,pkg-config)))
477 (home-page "https://qqwing.com/")
478 (synopsis "Sudoku puzzle solver and generator")
479 (description
480 "QQWing is a Sudoku puzzle generator and solver.
481It offers the following features:
482@enumerate
483@item Can solve 1000 puzzles in 1 second and generate 1000 puzzles in 25 seconds.
484@item Uses logic. Uses as many solve techniques as possible when solving
485 puzzles rather than guessing.
486@item Rates puzzles. Most generators don't give an indication of the difficulty
487 of a Sudoku puzzle. QQwing does.
488@item Can print solve instructions for any puzzle.
489@item Customizable output style, including a CSV style that is easy to
490 import into a database.
491@end enumerate")
492 (license license:gpl2+)))
d2cc38b7
KK
493
494(define-public quesoglc
495 (package
496 (name "quesoglc")
497 (version "0.7.2")
498 (source (origin
499 (method url-fetch)
500 (uri (string-append "mirror://sourceforge/" name "/" version "/"
501 name "-" version "-free.tar.bz2"))
502 (sha256
503 (base32
504 "08ddhywdy2qg17m592ng3yr0p1ih96irg8wg729g75hsxxq9ipks"))))
505 (build-system gnu-build-system)
506 (native-inputs `(("pkg-config" ,pkg-config)))
507 (inputs `(("fontconfig" ,fontconfig)
508 ("freeglute" ,freeglut)
509 ("fribidi" ,fribidi)
510 ("glew" ,glew)))
511 (home-page "http://quesoglc.sourceforge.net")
512 (synopsis "Implementation of the OpenGL Character Renderer (GLC)")
513 (description
514 "The OpenGL Character Renderer (GLC) is a state machine that provides
515OpenGL programs with character rendering services via an application programming
516interface (API).")
517 (license (list license:expat license:lgpl2.1+))))
4bc37bf0
KK
518
519(define-public python-pygame
520 (package
521 (name "python-pygame")
522 (version "1.9.1")
523 (source (origin
524 (method url-fetch)
525 (uri (string-append "http://pygame.org/ftp/pygame-"
526 version "release.tar.gz"))
527 (sha256
528 (base32
529 "0cyl0ww4fjlf289pjxa53q4klyn55ajvkgymw0qrdgp4593raq52"))))
530 (build-system python-build-system)
531 (arguments
532 `(#:python ,python-2
533 #:tests? #f ; Tests require pygame to be installed first.
534 #:phases
535 (modify-phases %standard-phases
536 ;; Set the paths to the dependencies manually because
537 ;; the configure script does not allow passing them as
538 ;; parameters. This also means we can skip the configure
539 ;; phase.
540 (add-before 'build 'set-library-paths
541 (lambda* (#:key inputs outputs #:allow-other-keys)
542 (let ((sdl-ref (assoc-ref inputs "sdl"))
543 (font-ref (assoc-ref inputs "sdl-ttf"))
544 (image-ref (assoc-ref inputs "sdl-image"))
545 (mixer-ref (assoc-ref inputs "sdl-mixer"))
546 (smpeg-ref (assoc-ref inputs "libsmpeg"))
547 (png-ref (assoc-ref inputs "libpng"))
548 (jpeg-ref (assoc-ref inputs "libjpeg"))
549 (v4l-ref (assoc-ref inputs "v4l-utils"))
550 (out-ref (assoc-ref outputs "out")))
551 (substitute* "Setup.in"
552 (("SDL = -I/usr/include/SDL")
553 (string-append "SDL = -I" sdl-ref "/include/SDL -I.")))
554 (substitute* "Setup.in"
555 (("FONT = -lSDL_ttf")
556 (string-append "FONT = -I" font-ref "/include/SDL -L"
557 font-ref "/lib -lSDL_ttf")))
558 (substitute* "Setup.in"
559 (("IMAGE = -lSDL_image")
560 (string-append "IMAGE = -I" image-ref "/include/SDL -L"
561 image-ref "/lib -lSDL_image")))
562 (substitute* "Setup.in"
563 (("MIXER = -lSDL_mixer")
564 (string-append "MIXER = -I" mixer-ref "/include/SDL -L"
565 mixer-ref "/lib -lSDL_mixer")))
566 (substitute* "Setup.in"
567 (("SMPEG = -lsmpeg")
568 (string-append "SMPEG = -I" smpeg-ref "/include/smpeg -L"
569 smpeg-ref "/lib -lsmpeg")))
570 (substitute* "Setup.in"
571 (("PNG = -lpng")
572 (string-append "PNG = -I" png-ref "/include -L"
573 png-ref "/lib -lpng")))
574 (substitute* "Setup.in"
575 (("JPEG = -ljpeg")
576 (string-append "JPEG = -I" jpeg-ref "/include -L"
577 jpeg-ref "/lib -ljpeg")))
578 (substitute* "Setup.in"
579 (("^pypm") "#pypm"))
580 (substitute* "src/movie.c")
581 ;; Create a path to a header file provided by v4l-utils.
582 (system* "mkdir" "linux")
583 (system* "ln" "--symbolic"
584 (string-append v4l-ref "/include/libv4l1-videodev.h")
585 "linux/videodev.h")
586 (system* "ln" "--symbolic" "Setup.in" "Setup")))))))
587 (native-inputs
588 `(("python-setuptools" ,python-setuptools)))
589 (inputs
590 `(("sdl" ,sdl)
591 ("sdl-image" ,sdl-image)
592 ("sdl-mixer" ,sdl-mixer)
593 ("sdl-ttf" ,sdl-ttf)
594 ("sdl-gfx" ,sdl-gfx)
595 ("libjpeg" ,libjpeg)
596 ("libpng" ,libpng)
597 ("libX11" ,libx11)
598 ("libsmpeg" ,libsmpeg)
599 ("portmidi" ,portmidi)
600 ("v4l-utils" ,v4l-utils)))
601 (home-page "http://www.pygame.org")
602 (synopsis "SDL wrapper for Python")
603 (description "Pygame is a set of Python modules designed for writing games.
604Pygame adds functionality on top of the excellent SDL library. This allows you
605to create fully featured games and multimedia programs in the python language.")
606 (license (list license:bsd-2
607 ;; python numeric license as listed by Debian looks like
608 ;; an Expat-style license with a warranty disclaimer for
609 ;; the U.S. government and the University of California.
610 license:expat
611 license:lgpl2.0+
612 license:lgpl2.1+
613 license:gpl3+
614 license:psfl
615 license:public-domain
616 license:lgpl2.1+))))