From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marius Bakke Subject: [PATCH 3/3] gnu: Add speech-dispatcher. Date: Mon, 31 Oct 2016 10:49:28 +0000 Message-ID: <20161031104928.31856-3-mbakke@fastmail.com> References: <20161031104928.31856-1-mbakke@fastmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41489) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1c1A9v-0001ov-PO for guix-devel@gnu.org; Mon, 31 Oct 2016 06:49:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1c1A9t-0000Bc-1P for guix-devel@gnu.org; Mon, 31 Oct 2016 06:49:43 -0400 Received: from out2-smtp.messagingengine.com ([66.111.4.26]:54442) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1c1A9s-0000BW-UU for guix-devel@gnu.org; Mon, 31 Oct 2016 06:49:40 -0400 In-Reply-To: <20161031104928.31856-1-mbakke@fastmail.com> 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" To: guix-devel@gnu.org Cc: Marius Bakke * gnu/packages/speech.scm (speech-dispatcher): New variable. --- gnu/packages/speech.scm | 45 ++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 44 insertions(+), 1 deletion(-) diff --git a/gnu/packages/speech.scm b/gnu/packages/speech.scm index 95c7591..39a940d 100644 --- a/gnu/packages/speech.scm +++ b/gnu/packages/speech.scm @@ -1,5 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2016 David Thompson +;;; Copyright © 2016 Marius Bakke ;;; ;;; This file is part of GNU Guix. ;;; @@ -22,7 +23,12 @@ #:use-module (guix download) #:use-module (guix build-system gnu) #:use-module (gnu packages) - #:use-module (gnu packages gcc)) + #:use-module (gnu packages autotools) + #:use-module (gnu packages gcc) + #:use-module (gnu packages glib) + #:use-module (gnu packages pkg-config) + #:use-module (gnu packages pulseaudio) + #:use-module (gnu packages textutils)) (define-public mitlm (package @@ -49,3 +55,40 @@ models involving iterative parameter estimation. It achieves much of its efficiency through the use of a compact vector representation of n-grams.") (home-page "https://github.com/mitlm/mitlm") (license license:expat))) + +(define-public speech-dispatcher + (package + (name "speech-dispatcher") + (version "0.8.5") + (source (origin + (method url-fetch) + (uri (string-append "https://devel.freebsoft.org/pub/" + "projects/speechd/speech-dispatcher-" + version ".tar.gz")) + (sha256 + (base32 + "18jlxnhlahyi6njc6l6576hfvmzivjjgfjyd2n7vvrvx9inphjrb")))) + (build-system gnu-build-system) + (native-inputs + `(("intltool" ,intltool) + ("pkg-config" ,pkg-config))) + (inputs + `(("dotconf" ,dotconf) + ("glib" ,glib) + ("libltdl" ,libltdl) + ("libsndfile" ,libsndfile))) + (synopsis "Common interface to speech synthesizers") + (description "The Speech Dispatcher project provides a high-level +device independent layer for access to speech synthesis through a simple, +stable and well documented interface.") + (home-page "https://devel.freebsoft.org/speechd") + ;; The software is distributed under GPL2+, but includes a number + ;; of files covered by other licenses. + (license (list license:gpl2+ + license:fdl1.2+ ; Most files in doc/ are dual gpl2+/fdl1.2+. + license:lgpl2.1+ + license:gpl2 + (license:non-copyleft + ;; festival_client.{c,h} carries an expat-style license. + "See src/modules/festival_client.c in the distribution.") + license:gpl3+)))) ; doc/texinfo.tex -- with TeX exception. -- 2.10.1