[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/04: gnu: Add sfxr.
From: |
David Thompson |
Subject: |
01/04: gnu: Add sfxr. |
Date: |
Wed, 20 May 2015 16:30:19 +0000 |
davexunit pushed a commit to branch master
in repository guix.
commit d620ea889cd6ea75430258b613d729900f440abc
Author: David Thompson <address@hidden>
Date: Mon May 18 19:14:01 2015 -0400
gnu: Add sfxr.
* gnu/packages/game-development.scm (sfxr): New variable.
---
gnu/packages/game-development.scm | 43 ++++++++++++++++++++++++++++++++++++-
1 files changed, 42 insertions(+), 1 deletions(-)
diff --git a/gnu/packages/game-development.scm
b/gnu/packages/game-development.scm
index 2191767..14209f4 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -33,7 +33,11 @@
#:use-module (gnu packages fontutils)
#:use-module (gnu packages image)
#:use-module (gnu packages audio)
- #:use-module (gnu packages pulseaudio))
+ #:use-module (gnu packages pulseaudio)
+ #:use-module (gnu packages gnome)
+ #:use-module (gnu packages gtk)
+ #:use-module (gnu packages sdl)
+ #:use-module (gnu packages pkg-config))
(define-public bullet
(package
@@ -127,3 +131,40 @@ clone.")
to ease the development of games and multimedia applications. It is composed
of five modules: system, window, graphics, audio and network.")
(license license:zlib)))
+
+(define-public sfxr
+ (package
+ (name "sfxr")
+ (version "1.2.1")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
"http://www.drpetter.se/files/sfxr-sdl-1.2.1.tar.gz"))
+ (sha256
+ (base32
+ "0dfqgid6wzzyyhc0ha94prxax59wx79hqr25r6if6by9cj4vx4ya"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:phases (modify-phases %standard-phases
+ (delete 'configure) ; no configure script
+ (add-before 'build 'patch-makefile
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let ((out (assoc-ref outputs "out")))
+ (substitute* "Makefile"
+ (("\\$\\(DESTDIR\\)/usr") out))
+ (substitute* "main.cpp"
+ (("/usr/share")
+ (string-append out "/share")))
+ #t))))
+ #:tests? #f)) ; no tests
+ (native-inputs
+ `(("pkg-config" ,pkg-config)
+ ("desktop-file-utils" ,desktop-file-utils)))
+ (inputs
+ `(("sdl" ,sdl)
+ ("gtk+" ,gtk+)))
+ (synopsis "Simple sound effect generator")
+ (description "Sfxr is a tool for quickly generating simple sound effects.
+Originally created for use in video game prototypes, it can generate random
+sounds from presets such as \"explosion\" or \"powerup\".")
+ (home-page "http://www.drpetter.se/project_sfxr.html")
+ (license license:expat)))