[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#26262: [PATCH 1/2] gnu: Add speexdsp.
From: |
Marius Bakke |
Subject: |
bug#26262: [PATCH 1/2] gnu: Add speexdsp. |
Date: |
Sun, 26 Mar 2017 10:14:47 +0200 |
* gnu/packages/xiph.scm (speexdsp): New variable. Export it.
---
gnu/packages/xiph.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/xiph.scm b/gnu/packages/xiph.scm
index 5ad504604..6a979bb54 100644
--- a/gnu/packages/xiph.scm
+++ b/gnu/packages/xiph.scm
@@ -43,6 +43,7 @@
libvorbis
libtheora
speex
+ speexdsp
ao
flac
libkate
@@ -149,6 +150,26 @@ stereo encoding, and voice activity detection.")
(license (license:non-copyleft "file://COPYING"
"See COPYING in the distribution."))))
+(define speexdsp
+ (package
+ (name "speexdsp")
+ (version "1.2rc3")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "http://downloads.xiph.org/releases/speex/"
+ "speexdsp-" version ".tar.gz"))
+ (sha256
+ (base32
+ "1wcjyrnwlkayb20zdhp48y260rfyzg925qpjpljd5x9r01h8irja"))))
+ (build-system gnu-build-system)
+ (home-page "https://speex.org/")
+ (synopsis "Speex processing library")
+ (description
+ "SpeexDSP is a @dfn{DSP} (Digital Signal Processing) library based on
+work from the @code{speex} codec.")
+ (license (license:non-copyleft "file://COPYING"
+ "See COPYING in the distribution."))))
+
(define ao
(package
(name "ao")
--
2.12.2
- bug#26262: [PATCH 1/2] gnu: Add speexdsp.,
Marius Bakke <=