all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: taylanbayirli@gmail.com (Taylan Ulrich Bayırlı/Kammer)
To: guix-devel@gnu.org
Subject: [PATCH] gnu: Add portaudio.
Date: Sun, 22 Feb 2015 00:24:54 +0100	[thread overview]
Message-ID: <87r3tikfuh.fsf@taylan.uni.cx> (raw)

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: patch --]
[-- Type: text/x-diff, Size: 1755 bytes --]

From fd615fa66ba26b1b3195670489a64f7f3b404401 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Taylan=20Ulrich=20Bay=C4=B1rl=C4=B1/Kammer?=
 <taylanbayirli@gmail.com>
Date: Fri, 20 Feb 2015 21:51:49 +0100
Subject: [PATCH 8/9] gnu: Add portaudio.

* gnu/packages/audio.scm (portaudio): New variable.
---
 gnu/packages/audio.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index d220349..9e24dc8 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -788,3 +788,32 @@ conversion.  It may be used, for example, to resample PCM-encoded audio.")
 tooLAME by Mike Cheng, which in turn is based upon the ISO dist10 code and
 portions of LAME.")
     (license license:lgpl2.1+)))
+
+(define-public portaudio
+  (package
+    (name "portaudio")
+    (version "19.20140130")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "http://www.portaudio.com/archives/pa_stable_v"
+             (string-map (lambda (c) (if (char=? c #\.) #\_ c)) version)
+             ".tgz"))
+       (sha256
+        (base32 "0mwddk4qzybaf85wqfhxqlf0c5im9il8z03rd4n127k8y2jj9q4g"))))
+    (build-system gnu-build-system)
+    (inputs
+     ;; TODO: Add ASIHPI.
+     `(("alsa-lib" ,alsa-lib)
+       ("jack" ,jack-2)))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (arguments '(#:tests? #f))          ;no 'check' target
+    (home-page "http://www.portaudio.com/")
+    (synopsis "Audio I/O library")
+    (description
+     "PortAudio is a portable C/C++ audio I/O library providing a simple API
+to record and/or play sound using a callback function or a blocking read/write
+interface.")
+    (license license:expat)))
-- 
2.2.1

             reply	other threads:[~2015-02-21 23:24 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-02-21 23:24 Taylan Ulrich Bayırlı/Kammer [this message]
2015-02-25 13:57 ` [PATCH] gnu: Add portaudio Ludovic Courtès

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87r3tikfuh.fsf@taylan.uni.cx \
    --to=taylanbayirli@gmail.com \
    --cc=guix-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.