From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52101) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gLZwH-0006aX-Qc for guix-patches@gnu.org; Sat, 10 Nov 2018 15:33:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gLZwE-0006V8-CR for guix-patches@gnu.org; Sat, 10 Nov 2018 15:33:05 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:40763) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gLZwE-0006Uw-71 for guix-patches@gnu.org; Sat, 10 Nov 2018 15:33:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gLZwE-0002oC-1e for guix-patches@gnu.org; Sat, 10 Nov 2018 15:33:02 -0500 Subject: [bug#33337] [PATCH] gnu: Add autotalent. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51574) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gLZvq-0004Pv-BD for guix-patches@gnu.org; Sat, 10 Nov 2018 15:32:41 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gLZqV-0000IC-1A for guix-patches@gnu.org; Sat, 10 Nov 2018 15:27:10 -0500 Received: from mout0.freenet.de ([2001:748:100:40::2:2]:44734) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gLZqU-00006W-Pr for guix-patches@gnu.org; Sat, 10 Nov 2018 15:27:06 -0500 Received: from [195.4.92.164] (helo=mjail1.freenet.de) by mout0.freenet.de with esmtpa (ID t_w_@freenet.de) (port 25) (Exim 4.90_1 #2) id 1gLZqS-0000Fc-21 for guix-patches@gnu.org; Sat, 10 Nov 2018 21:27:04 +0100 Received: from [::1] (port=38778 helo=mjail1.freenet.de) by mjail1.freenet.de with esmtpa (ID t_w_@freenet.de) (Exim 4.90_1 #2) id 1gLZqS-00086d-1K for guix-patches@gnu.org; Sat, 10 Nov 2018 21:27:04 +0100 Received: from sub4.freenet.de ([195.4.92.123]:52168) by mjail1.freenet.de with esmtpa (ID t_w_@freenet.de) (Exim 4.90_1 #2) id 1gLZoM-0006Bs-HW for guix-patches@gnu.org; Sat, 10 Nov 2018 21:24:54 +0100 From: Thorsten Wilms Date: Sat, 10 Nov 2018 21:22:28 +0100 Message-Id: <20181110202227.21286-1-t_w_@freenet.de> MIME-Version: 1.0 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: 33337@debbugs.gnu.org * gnu/packages/audio.scm (autotalent): New variable. --- gnu/packages/audio.scm | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index ee18b0022..2a1785f54 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -427,6 +427,47 @@ and editing digital audio. It features digital effects and spectrum analysis tools.") (license license:gpl2+))) +(define-public autotalent + (package + (name "autotalent") + (version "0.2") + (source (origin + (method url-fetch) + (uri (string-append "http://tombaran.info/autotalent-" + version ".tar.gz")) + (sha256 + (base32 + "1n04qm66f14195ly6gsy3ra7v2j7zad5n19d8dwfmh0qs6h9hphh")))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f ; no check target + #:phases + (modify-phases %standard-phases + ;; no configure script + (delete 'configure) + (add-before 'install 'prepare-target-directory + (lambda* (#:key outputs #:allow-other-keys) + (mkdir-p (string-append (assoc-ref outputs "out") "/lib/ladspa")) + #t)) + (add-after 'unpack 'override-target-directory + (lambda* (#:key outputs #:allow-other-keys) + (substitute* "Makefile" + (("/usr/lib64/ladspa") + (string-append (assoc-ref outputs "out") "/lib/ladspa"))) + #t))))) + (inputs + `(("ladspa" ,ladspa))) + (home-page "http://tombaran.info/autotalent.html") + (synopsis "Pitch-correction LADSPA audio plugin") + (description + "Autotalent is a LADSPA plugin for real-time pitch-correction. Among its +controls are allowable notes, strength of correction, LFO for vibrato and +formant warp.") + ;; All code except the FFT routine is licensed under GPL2. + ;; The FFT routine is licensed under a Pure Data license. + (license (list license:gpl2 + (license:non-copyleft "file://COPYING-mayer_fft"))))) + (define-public azr3 (package (name "azr3") -- 2.19.1