diff options
author | Thorsten Wilms <t_w_@freenet.de> | 2018-11-10 21:22:28 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-11-19 23:11:38 +0100 |
commit | c3276dbecb2bb40a4afb3a5e2f3b3ee477a93775 (patch) | |
tree | f253fb1b9155fb4b42ce46a20516eb8e9593eb90 /gnu/packages/audio.scm | |
parent | 887437ee0e817fc1d464c79c9a95c2915b6ff7a3 (diff) | |
download | gnu-guix-c3276dbecb2bb40a4afb3a5e2f3b3ee477a93775.tar gnu-guix-c3276dbecb2bb40a4afb3a5e2f3b3ee477a93775.tar.gz |
gnu: Add autotalent.
* gnu/packages/audio.scm (autotalent): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/audio.scm')
-rw-r--r-- | gnu/packages/audio.scm | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index d74f50fac5..1f83c49f4d 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -428,6 +428,46 @@ 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 GPLv2+. + ;; The FFT routine is under BSD-3. + (license (list license:gpl2+)))) + (define-public azr3 (package (name "azr3") |