all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Thorsten Wilms <t_w_@freenet.de>
To: 49008@debbugs.gnu.org
Cc: Thorsten Wilms <t_w_@freenet.de>
Subject: [bug#49008] [PATCH v2] gnu: Add invada-studio-plugins-lv2.
Date: Tue, 26 Oct 2021 14:40:50 +0200	[thread overview]
Message-ID: <20211026124050.11299-1-t_w_@freenet.de> (raw)
In-Reply-To: <20210613192515.9046-1-t_w_@freenet.de>

* gnu/packages/audio.scm (invada-studio-plugins-lv2): New Varaible.
---
 gnu/packages/audio.scm | 45 +++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 44 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index faf106fc68..62e8a0532a 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -15,7 +15,7 @@
 ;;; Copyright © 2018 Clément Lassieur <clement@lassieur.org>
 ;;; Copyright © 2018 Brett Gilio <brettg@gnu.org>
 ;;; Copyright © 2018, 2019 Marius Bakke <mbakke@fastmail.com>
-;;; Copyright © 2018 Thorsten Wilms <t_w_@freenet.de>
+;;; Copyright © 2018. 2021 Thorsten Wilms <t_w_@freenet.de>
 ;;; Copyright © 2018 Eric Bavier <bavier@member.fsf.org>
 ;;; Copyright © 2018 Brendan Tildesley <mail@brendan.scot>
 ;;; Copyright © 2019, 2021 Pierre Langlois <pierre.langlois@gmx.com>
@@ -5566,3 +5566,46 @@ (define-public mda-lv2
      "MDA-LV2 is an LV2 port of the MDA plugins.  It includes effects and a few
 instrument plugins.")
     (license license:gpl3+)))
+
+(define-public invada-studio-plugins-lv2
+  (package
+    (name "invada-studio-plugins-lv2")
+    (version "1.3pre")
+    ;; Last release 1.2 is from 2009 and lacks required changes.
+    (source (origin
+              (method bzr-fetch)
+              (uri (bzr-reference
+		    (url "lp:invada-studio")
+		    (revision "108")))
+              (sha256
+               (base32
+		"05flf9b25z14380b54z47jvnbyilq24arm6jysk29zmxq28a6d3l"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:tests? #f ; no check target
+       #:phases
+       (modify-phases
+	   %standard-phases         
+	 (delete 'configure) ; There is no configure script
+	 (add-after 'unpack 'adjust-makefile
+	   (lambda* (#:key outputs #:allow-other-keys)
+	     (substitute* "Makefile"
+	       ;; Set proper LV2 plugin target directory:
+	       (("/usr/local")
+		(assoc-ref outputs "out"))
+	       ;; The default install target just prints a note about
+	       ;; install-user and install-sys, the one we want:
+	       (("install:") "install: install-sys"))
+	     #t)))))
+    (inputs
+     `(("lv2" ,lv2)
+       ("gtk" ,gtk+-2)))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (home-page "https://launchpad.net/invada-studio/lv2")
+    (synopsis "LV2 audio plugin collection.")
+    (description
+     "Invada Studio Plugins are LV2 audio plugins, including distortion, delay, 
+compressor, filters, Phasers, early-reflections-based reverb, utility and test
+tone generator. ")
+    (license (list license:gpl2+ license:gpl2+))))
-- 
2.33.1





      reply	other threads:[~2021-10-26 12:42 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-13 19:25 [bug#49008] [PATCH] gnu: Add invada-studio-plugins-lv2 Thorsten Wilms
2021-10-26 12:40 ` Thorsten Wilms [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20211026124050.11299-1-t_w_@freenet.de \
    --to=t_w_@freenet.de \
    --cc=49008@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.