From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: [PATCH 1/2] gnu: Add sonic. Date: Tue, 12 Jan 2016 00:26:38 -0500 Message-ID: <5ce5b80290833db46e031d80e43c00fec1399d7b.1452576360.git.leo@famulari.name> References: Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51013) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aIrTe-0001fp-AZ for guix-devel@gnu.org; Tue, 12 Jan 2016 00:26:43 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aIrTb-0005Vx-Mf for guix-devel@gnu.org; Tue, 12 Jan 2016 00:26:42 -0500 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:35698) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aIrTb-0005VU-J2 for guix-devel@gnu.org; Tue, 12 Jan 2016 00:26:39 -0500 Received: from jasmine.lan (c-69-249-5-231.hsd1.pa.comcast.net [69.249.5.231]) by mail.messagingengine.com (Postfix) with ESMTPA id F2CAA68018E for ; Tue, 12 Jan 2016 00:26:36 -0500 (EST) In-Reply-To: In-Reply-To: References: List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org * gnu/packages/audio.scm (sonic): New variable. --- gnu/packages/audio.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index ebae5d5..111a82d 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -2023,3 +2023,37 @@ that contains WAVE data, compressed or not---provided there exists a format module to handle that particular file type.") (home-page "http://etree.org/shnutils/shntool/") (license license:gpl3+))) + +(define-public sonic + (package + (name "sonic") + (version "0.2.0") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/waywardgeek/sonic/archive/" + "release-" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "11a0q9wkgbb9ymf52v7dvybfhj8hprgr67zs1xcng143fvjpr0n7")))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f ; no test suite + #:make-flags + (list (string-append "DESTDIR=" (assoc-ref %outputs "out"))) + #:phases (modify-phases %standard-phases + (delete 'configure)))) + (synopsis "Speed up or slow down speech") + (description "Sonic is a simple algorithm for speeding up or slowing down +speech. However, it's optimized for speed ups of over 2X, unlike previous +algorithms for changing speech rate. The Sonic library is a very simple ANSI C +library that is designed to easily be integrated into streaming voice +applications, like TTS back ends. + +The primary motivation behind Sonic is to enable the blind and visually impaired +to improve their productivity with open source speech engines, like espeak. +Sonic can also be used by the sighted. For example, Sonic can improve the +experience of listening to an audio book on an Android phone.") + (home-page "https://github.com/waywardgeek/sonic") + (license license:asl2.0))) -- 2.6.4