From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ricardo Wurmus Subject: [PATCH]: Add LV2 mda Piano/EPiano plugins. Date: Fri, 13 Feb 2015 23:25:28 +0100 Message-ID: <87r3ttmotj.fsf@mango.localdomain> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60764) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YMOg6-000562-7K for guix-devel@gnu.org; Fri, 13 Feb 2015 17:25:39 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YMOg0-00013U-MA for guix-devel@gnu.org; Fri, 13 Feb 2015 17:25:38 -0500 Received: from sender1.zohomail.com ([74.201.84.156]:60221) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YMOg0-00013F-DT for guix-devel@gnu.org; Fri, 13 Feb 2015 17:25:32 -0500 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 --=-=-= Content-Type: text/plain Here are two packages for my own software: the LV2 ports of the mda Piano and mda EPiano audio plugins. Downloads from gitorious do not appear to work (see bug #19840), so I offer the tarball (one for both plugins) on my own server until this is fixed. ~~ Ricardo --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-Add-LV2-mda-Piano-plugin.patch >From 9bc97be6d04e02c1474e3a257de2062055260401 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Wed, 11 Feb 2015 23:30:50 +0100 Subject: [PATCH 1/2] gnu: Add LV2 mda Piano plugin. * gnu/packages/audio.scm (lv2-mdapiano): New variable. --- gnu/packages/audio.scm | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 92ed2ac..9a79c53 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -336,6 +336,41 @@ add functionality to support the needs of increasingly powerful audio software.") (license license:isc))) +(define-public lv2-mdapiano + (package + (name "lv2-mdapiano") + (version "0.0.2") + (source (origin + (method url-fetch) + (uri + ;; Archive downloads from gitorious.org are currently broken, + ;; see bug #19840. + (list + (string-append + "http://elephly.net/downies/lv2-mdametapiano-" + version ".tar.gz") + (string-append + "https://gitorious.org/lv2-synths/lv2-mdametapiano/archive/" + version ".tar.gz"))) + (sha256 + (base32 + "03ydnqw82wxqdbd7xqdx0vsd9ajk269cclvjvn2s3iq5797j2pfb")))) + (build-system gnu-build-system) + (arguments + `(#:make-flags '("TYPE=mdaPiano") + #:tests? #f ; no check target + #:phases (alist-delete 'configure %standard-phases))) + (inputs + `(("lv2" ,lv2) + ("lvtk" ,lvtk))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (home-page "http://elephly.net/lv2/mdapiano.html") + (synopsis "LV2 port of the mda Piano plugin") + (description + "An LV2 port of the mda Piano VSTi.") + (license license:gpl3+))) + (define-public lvtk (package (name "lvtk") -- 2.1.0 --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0002-gnu-Add-LV2-mda-EPiano-plugin.patch >From c71b66b20d04e57228685f709ccb7e4195de4ae8 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Wed, 11 Feb 2015 23:31:37 +0100 Subject: [PATCH 2/2] gnu: Add LV2 mda EPiano plugin. * gnu/packages/audio.scm (lv2-mdaepiano): New variable. --- gnu/packages/audio.scm | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 9a79c53..e9ab5a5 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -371,6 +371,18 @@ software.") "An LV2 port of the mda Piano VSTi.") (license license:gpl3+))) +(define-public lv2-mdaepiano + (package (inherit lv2-mdapiano) + (name "lv2-mdaepiano") + (arguments + `(#:make-flags '("TYPE=mdaPiano") + #:tests? #f ; no check target + #:phases (alist-delete 'configure %standard-phases))) + (home-page "http://elephly.net/lv2/mdaepiano.html") + (synopsis "LV2 port of the mda EPiano plugin") + (description + "An LV2 port of the mda EPiano VSTi."))) + (define-public lvtk (package (name "lvtk") -- 2.1.0 --=-=-=--