From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: [PATCH 2/2] gnu: Add shntool. Date: Mon, 28 Dec 2015 00:32:40 -0500 Message-ID: <4226347b7b8b1caeffcadde82a4f7245ae69ead5.1451280624.git.leo@famulari.name> References: Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59267) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aDQQO-0003wb-Iz for guix-devel@gnu.org; Mon, 28 Dec 2015 00:32:53 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aDQQM-0003TN-06 for guix-devel@gnu.org; Mon, 28 Dec 2015 00:32:52 -0500 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:40645) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aDQQL-0003Sj-Sw for guix-devel@gnu.org; Mon, 28 Dec 2015 00:32:49 -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 D008668024E for ; Mon, 28 Dec 2015 00:32:47 -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 (shntool): New variable. --- gnu/packages/audio.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 89dc468..cfece94 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -1986,3 +1986,23 @@ files are a way to represent the layout of a data or audio CD in a machine-readable ASCII format.") (home-page "https://github.com/svend/cuetools") (license license:gpl2))) + +(define-public shntool + (package + (name "shntool") + (version "3.0.10") + (source (origin + (method url-fetch) + (uri (string-append "http://etree.org/shnutils/shntool/dist/src/" + "shntool-" version ".tar.gz")) + (sha256 + (base32 + "00i1rbjaaws3drkhiczaign3lnbhr161b7rbnjr8z83w8yn2wc3l")))) + (build-system gnu-build-system) + (synopsis "Multi-purpose WAVE data utility") + (description "shntool is a multi-purpose WAVE data processing and reporting +utility. File formats are abstracted from its core, so it can process any file +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+))) -- 2.6.4