unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH]: Add JACK.
@ 2015-01-26  9:25 Ricardo Wurmus
  2015-01-26 20:25 ` Ludovic Courtès
  2015-01-26 21:18 ` Andreas Enge
  0 siblings, 2 replies; 5+ messages in thread
From: Ricardo Wurmus @ 2015-01-26  9:25 UTC (permalink / raw)
  To: Guix-devel

[-- Attachment #1: 0001-gnu-Add-JACK.patch --]
[-- Type: text/x-patch, Size: 3433 bytes --]

From 76fc79499e1f4cc2ff7cb8f504026b68612b90c1 Mon Sep 17 00:00:00 2001
From: rekado <rekado@elephly.net>
Date: Mon, 26 Jan 2015 09:59:56 +0100
Subject: [PATCH] gnu: Add JACK

* gnu/packages/audio.scm: New file
* gnu-system.am (GNU_SYSTEM_MODULES): Add it
---
 gnu-system.am          |  1 +
 gnu/packages/audio.scm | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 58 insertions(+)
 create mode 100644 gnu/packages/audio.scm

diff --git a/gnu-system.am b/gnu-system.am
index c4387ba..1abf1b1 100644
--- a/gnu-system.am
+++ b/gnu-system.am
@@ -37,6 +37,7 @@ GNU_SYSTEM_MODULES =				\
   gnu/packages/asciidoc.scm			\
   gnu/packages/aspell.scm			\
   gnu/packages/attr.scm				\
+  gnu/packages/audio.scm			\
   gnu/packages/autogen.scm			\
   gnu/packages/autotools.scm			\
   gnu/packages/avahi.scm			\
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
new file mode 100644
index 0000000..f57af69
--- /dev/null
+++ b/gnu/packages/audio.scm
@@ -0,0 +1,57 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (gnu packages audio)
+  #:use-module (guix packages)
+  #:use-module (guix download)
+  #:use-module (guix git-download)
+  #:use-module ((guix licenses) #:prefix license:)
+  #:use-module (guix build-system gnu)
+  #:use-module (gnu packages)
+  #:use-module (gnu packages databases)
+  #:use-module (gnu packages linux))
+
+(define-public jack1
+  (package
+    (name "jack")
+    (version "0.124.1")
+    (source (origin
+             (method url-fetch)
+             (uri (string-append
+                   "http://jackaudio.org/downloads/jack-audio-connection-kit-"
+                   version
+                   ".tar.gz"))
+             (sha256
+              (base32
+               "1mk1wnx33anp6haxfjjkfhwbaknfblsvj35nxvz0hvspcmhdyhpb"))))
+    (build-system gnu-build-system)
+    (inputs
+     `(("bdb" ,bdb)
+       ("libuuid" ,util-linux)))
+    (home-page "http://jackaudio.org/")
+    (synopsis "JACK audio connection kit")
+    (description
+     "JACK is a low-latency audio server.  It can connect a number of
+different applications to an audio device, as well as allowing them to share
+audio between themselves.  JACK is different from other audio server efforts
+in that it has been designed from the ground up to be suitable for
+professional audio work.  This means that it focuses on two key areas:
+synchronous execution of all clients, and low latency operation.")
+    ;; Most files are licensed under the GPL. However, the libjack/ tree is
+    ;; licensed under the LGPL in order to allow for proprietary usage.
+    (license '(license:gpl2+ license:lgpl2.1+))))
-- 
2.1.0

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH]: Add JACK.
  2015-01-26  9:25 [PATCH]: Add JACK Ricardo Wurmus
@ 2015-01-26 20:25 ` Ludovic Courtès
  2015-01-26 21:18 ` Andreas Enge
  1 sibling, 0 replies; 5+ messages in thread
From: Ludovic Courtès @ 2015-01-26 20:25 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: Guix-devel

Ricardo Wurmus <rekado@elephly.net> skribis:

> From 76fc79499e1f4cc2ff7cb8f504026b68612b90c1 Mon Sep 17 00:00:00 2001
> From: rekado <rekado@elephly.net>
> Date: Mon, 26 Jan 2015 09:59:56 +0100
> Subject: [PATCH] gnu: Add JACK
>
> * gnu/packages/audio.scm: New file
> * gnu-system.am (GNU_SYSTEM_MODULES): Add it

OK!

Perhaps PulseAudio should go to that module eventually?

Thanks,
Ludo'.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH]: Add JACK.
  2015-01-26  9:25 [PATCH]: Add JACK Ricardo Wurmus
  2015-01-26 20:25 ` Ludovic Courtès
@ 2015-01-26 21:18 ` Andreas Enge
  2015-01-26 22:35   ` Ricardo Wurmus
  1 sibling, 1 reply; 5+ messages in thread
From: Andreas Enge @ 2015-01-26 21:18 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: Guix-devel

On Mon, Jan 26, 2015 at 10:25:06AM +0100, Ricardo Wurmus wrote:
> +(define-public jack1
> +  (package
> +    (name "jack")
> +    (version "0.124.1")

Is the "1" in "jack1" above a typo?

Andreas

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH]: Add JACK.
  2015-01-26 21:18 ` Andreas Enge
@ 2015-01-26 22:35   ` Ricardo Wurmus
  2015-01-27  8:51     ` Andreas Enge
  0 siblings, 1 reply; 5+ messages in thread
From: Ricardo Wurmus @ 2015-01-26 22:35 UTC (permalink / raw)
  To: Andreas Enge; +Cc: Guix-devel


Andreas Enge writes:
> On Mon, Jan 26, 2015 at 10:25:06AM +0100, Ricardo Wurmus wrote:
>> +(define-public jack1
>> +  (package
>> +    (name "jack")
>> +    (version "0.124.1")
>
> Is the "1" in "jack1" above a typo?

It is not.  There are two "editions" available:

JACK1 (currently at version 0.124.1) and JACK2 (currently at version
1.9.10).  I'm planning to package JACK2 a little later.

Here's some more information on the differences between the two
implementations:

https://github.com/jackaudio/jackaudio.github.com/wiki/Q_difference_jack1_jack2

~~ Ricardo

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH]: Add JACK.
  2015-01-26 22:35   ` Ricardo Wurmus
@ 2015-01-27  8:51     ` Andreas Enge
  0 siblings, 0 replies; 5+ messages in thread
From: Andreas Enge @ 2015-01-27  8:51 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: Guix-devel

On Mon, Jan 26, 2015 at 11:35:29PM +0100, Ricardo Wurmus wrote:
> Andreas Enge writes:
> > On Mon, Jan 26, 2015 at 10:25:06AM +0100, Ricardo Wurmus wrote:
> >> +(define-public jack1
> >> +  (package
> >> +    (name "jack")
> >> +    (version "0.124.1")
> >
> > Is the "1" in "jack1" above a typo?
> 
> It is not.  There are two "editions" available:
> JACK1 (currently at version 0.124.1) and JACK2 (currently at version
> 1.9.10).  I'm planning to package JACK2 a little later.

Okay, very well. Maybe call the variable jack-1? This is more compatible with
other packages (python-2, qt-4, etc.).

Andreas

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2015-01-27  8:51 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-01-26  9:25 [PATCH]: Add JACK Ricardo Wurmus
2015-01-26 20:25 ` Ludovic Courtès
2015-01-26 21:18 ` Andreas Enge
2015-01-26 22:35   ` Ricardo Wurmus
2015-01-27  8:51     ` Andreas Enge

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).