From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ricardo Wurmus Subject: Re: [PATCH]: Add LV2 mda Piano/EPiano plugins. Date: Sun, 22 Feb 2015 17:41:32 +0100 Message-ID: <87mw45c30j.fsf@mango.localdomain> References: <87r3ttmotj.fsf@mango.localdomain> <87mw4ahop1.fsf@netris.org> <87k2zelw9t.fsf@mango.localdomain> <87egpmguj2.fsf@netris.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37351) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YPZbH-0007XR-6t for guix-devel@gnu.org; Sun, 22 Feb 2015 11:41:49 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YPZbD-0001VH-VY for guix-devel@gnu.org; Sun, 22 Feb 2015 11:41:47 -0500 Received: from sender1.zohomail.com ([74.201.84.155]:29050) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YPZbD-0001V0-N6 for guix-devel@gnu.org; Sun, 22 Feb 2015 11:41:43 -0500 In-reply-to: <87egpmguj2.fsf@netris.org> 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: Mark H Weaver Cc: Guix-devel --=-=-= Content-Type: text/plain Attached are new versions of these patches that download from gitorious. The plugins work fine for me (e.g. in jalv), but they need the LV2_PATH to be set in order to be found by the LV2 host. ~~ Ricardo --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-gnu-Add-LV2-mda-Piano-plugin.patch >From dcd8d4febec8b86dbb6fe15d8a5f338c4feb7605 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 | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index e1ad44a..d17cf13 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -450,6 +450,37 @@ add functionality to support the needs of increasingly powerful audio software.") (license license:isc))) +(define-public lv2-mda-piano + (package + (name "lv2-mda-piano") + (version "0.0.2") + (source (origin + (method url-fetch) + (uri + (string-append + "https://gitorious.org/lv2-synths/lv2-mdametapiano/archive/" + version ".tar.gz")) + (sha256 + (base32 + "0v37l7ysm2fri6mmpz9s7mrwryk1rgad5s4ps053569xw4w7nxjl")))) + (build-system gnu-build-system) + (arguments + `(#:make-flags (list + "TYPE=mdaPiano" + (string-append "PREFIX=" (assoc-ref %outputs "out"))) + #: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: inline; filename=0002-gnu-Add-LV2-mda-EPiano-plugin.patch >From b2c3e2a156b1b78e0dfbe79444f14abee324c92c 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 | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index d17cf13..c15b096 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -481,6 +481,20 @@ software.") "An LV2 port of the mda Piano VSTi.") (license license:gpl3+))) +(define-public lv2-mda-epiano + (package (inherit lv2-mda-piano) + (name "lv2-mda-epiano") + (arguments + `(#:make-flags (list + "TYPE=mdaEPiano" + (string-append "PREFIX=" (assoc-ref %outputs "out"))) + #: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 --=-=-=--