From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:43785) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iVJWK-0003pg-HT for guix-patches@gnu.org; Thu, 14 Nov 2019 13:07:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iVJWJ-0001ZO-3m for guix-patches@gnu.org; Thu, 14 Nov 2019 13:07:04 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:54605) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iVJWJ-0001ZK-0O for guix-patches@gnu.org; Thu, 14 Nov 2019 13:07:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iVJWI-00073X-QU for guix-patches@gnu.org; Thu, 14 Nov 2019 13:07:02 -0500 Subject: [bug#38211] [PATCH 1/9] gnu: Add resample. References: <20191114180422.5592-1-mail@ambrevar.xyz> In-Reply-To: <20191114180422.5592-1-mail@ambrevar.xyz> Resent-Message-ID: From: Pierre Neidhardt Date: Thu, 14 Nov 2019 19:06:26 +0100 Message-Id: <20191114180627.6593-1-mail@ambrevar.xyz> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 38211@debbugs.gnu.org From: Jan Wielkiewicz * 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 ;;; Copyright © 2019 Mathieu Othacehe ;;; Copyright © 2019 Alexandros Theodotou +;;; Copyright © 2019 Jan Wielkiewicz ;;; ;;; 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