* [bug#28453] openttd-openmsx and openttd-opensfx
@ 2017-09-13 23:54 Arun Isaac
2017-09-14 0:51 ` [bug#28453] [PATCH 1/5] gnu: Add catcodec Arun Isaac
0 siblings, 1 reply; 3+ messages in thread
From: Arun Isaac @ 2017-09-13 23:54 UTC (permalink / raw)
To: 28453
Will send patches for openttd-openmsx and openttd-opensfx here...
^ permalink raw reply [flat|nested] 3+ messages in thread
* [bug#28453] [PATCH 1/5] gnu: Add catcodec.
2017-09-13 23:54 [bug#28453] openttd-openmsx and openttd-opensfx Arun Isaac
@ 2017-09-14 0:51 ` Arun Isaac
2017-09-14 22:44 ` Kei Kebreau
0 siblings, 1 reply; 3+ messages in thread
From: Arun Isaac @ 2017-09-14 0:51 UTC (permalink / raw)
To: 28453
* gnu/packages/game-development.scm (catcodec): New variable.
---
gnu/packages/game-development.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm
index c8869a494..7f4d4e1ae 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -10,6 +10,7 @@
;;; Copyright © 2016, 2017 Julian Graham <joolean@gmail.com>
;;; Copyright © 2017 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2017 Manolis Fragkiskos Ragkousis <manolis837@gmail.com>
+;;; Copyright © 2017 Arun Isaac <arunisaac@systemreboot.net>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -190,6 +191,31 @@ necessary.
;; The MD5 implementation contained in GRFID is under the zlib license.
(license (list license:gpl2 license:gpl2+ license:zlib))))
+(define-public catcodec
+ (package
+ (name "catcodec")
+ (version "1.0.5")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://binaries.openttd.org/extra/catcodec/"
+ version "/catcodec-" version "-source.tar.xz"))
+ (sha256
+ (base32
+ "1qg0c2i4p29sxj0q6qp2jynlrzm5pphz2xhcjqlxa69ycrnlxzs7"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:tests? #f ; no tests
+ #:make-flags (list (string-append "prefix=" %output))
+ #:phases (modify-phases %standard-phases
+ (delete 'configure))))
+ (home-page "http://dev.openttdcoop.org/projects/catcodec")
+ (synopsis "Encode/decode OpenTTD sounds")
+ (description "catcodec encodes and decodes sounds for OpenTTD. These
+sounds are not much more than some metadata (description and filename) and raw
+PCM data.")
+ (license license:gpl2)))
+
(define-public gzochi
(package
(name "gzochi")
--
2.14.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [bug#28453] [PATCH 1/5] gnu: Add catcodec.
2017-09-14 0:51 ` [bug#28453] [PATCH 1/5] gnu: Add catcodec Arun Isaac
@ 2017-09-14 22:44 ` Kei Kebreau
0 siblings, 0 replies; 3+ messages in thread
From: Kei Kebreau @ 2017-09-14 22:44 UTC (permalink / raw)
To: Arun Isaac; +Cc: 28453
[-- Attachment #1: Type: text/plain, Size: 2065 bytes --]
Arun Isaac <arunisaac@systemreboot.net> writes:
> * gnu/packages/game-development.scm (catcodec): New variable.
> ---
> gnu/packages/game-development.scm | 26 ++++++++++++++++++++++++++
> 1 file changed, 26 insertions(+)
>
> diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm
> index c8869a494..7f4d4e1ae 100644
> --- a/gnu/packages/game-development.scm
> +++ b/gnu/packages/game-development.scm
> @@ -10,6 +10,7 @@
> ;;; Copyright © 2016, 2017 Julian Graham <joolean@gmail.com>
> ;;; Copyright © 2017 Tobias Geerinckx-Rice <me@tobias.gr>
> ;;; Copyright © 2017 Manolis Fragkiskos Ragkousis <manolis837@gmail.com>
> +;;; Copyright © 2017 Arun Isaac <arunisaac@systemreboot.net>
> ;;;
> ;;; This file is part of GNU Guix.
> ;;;
> @@ -190,6 +191,31 @@ necessary.
> ;; The MD5 implementation contained in GRFID is under the zlib license.
> (license (list license:gpl2 license:gpl2+ license:zlib))))
>
> +(define-public catcodec
> + (package
> + (name "catcodec")
> + (version "1.0.5")
> + (source
> + (origin
> + (method url-fetch)
> + (uri (string-append "https://binaries.openttd.org/extra/catcodec/"
> + version "/catcodec-" version "-source.tar.xz"))
> + (sha256
> + (base32
> + "1qg0c2i4p29sxj0q6qp2jynlrzm5pphz2xhcjqlxa69ycrnlxzs7"))))
> + (build-system gnu-build-system)
> + (arguments
> + `(#:tests? #f ; no tests
> + #:make-flags (list (string-append "prefix=" %output))
> + #:phases (modify-phases %standard-phases
> + (delete 'configure))))
> + (home-page "http://dev.openttdcoop.org/projects/catcodec")
> + (synopsis "Encode/decode OpenTTD sounds")
> + (description "catcodec encodes and decodes sounds for OpenTTD. These
> +sounds are not much more than some metadata (description and filename) and raw
> +PCM data.")
> + (license license:gpl2)))
> +
> (define-public gzochi
> (package
> (name "gzochi")
LGTM.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-09-14 22:46 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-09-13 23:54 [bug#28453] openttd-openmsx and openttd-opensfx Arun Isaac
2017-09-14 0:51 ` [bug#28453] [PATCH 1/5] gnu: Add catcodec Arun Isaac
2017-09-14 22:44 ` Kei Kebreau
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.