[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#38211] [PATCH 1/9] gnu: Add resample.
From: |
Pierre Neidhardt |
Subject: |
[bug#38211] [PATCH 1/9] gnu: Add resample. |
Date: |
Thu, 14 Nov 2019 19:06:26 +0100 |
From: Jan Wielkiewicz <address@hidden>
* gnu/packages/audio.scm (resample): New variable.
---
gnu/packages/audio.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 15ba454edd..c59161a080 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -24,6 +24,7 @@
;;; Copyright © 2019 Arun Isaac <address@hidden>
;;; Copyright © 2019 Mathieu Othacehe <address@hidden>
;;; Copyright © 2019 Alexandros Theodotou <address@hidden>
+;;; Copyright © 2019 Jan Wielkiewicz <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -2299,6 +2300,29 @@ aimed at audio/musical applications.")
(base32
"04fajrass3ymr72flx5js5vxc601ccrmx8ny8scp0rw7j0igyjdr")))))))
+(define-public resample
+ (package
+ (name "resample")
+ (version "1.8.1")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
"https://ccrma.stanford.edu/~jos/gz/resample-"
+ version
+ ".tar.gz"))
+ (sha256 (base32
+
"074zj8ydp05yy1hjcglfv3hkvj4cm50f9nralka1992pm6yf8yvy"))))
+ (build-system gnu-build-system)
+ (native-inputs
+ `(("autoconf" ,autoconf)
+ ("automake" ,automake)
+ ("pkg-config" ,pkg-config)
+ ("libtool" ,libtool)))
+ (synopsis "Real-time library for sampling rate conversion")
+ (description "The @command{resample} software package contains free
+sampling-rate conversion and filter design utilities.")
+ (home-page
"https://ccrma.stanford.edu/~jos/resample/Free_Resampling_Software.html")
+ (license license:lgpl2.1+)))
+
(define-public rubberband
(package
(name "rubberband")
--
2.23.0