unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: "Schmidt, Florian Paul" <florian_paul.schmidt@uni-bielefeld.de>
To: 56278@debbugs.gnu.org
Subject: [bug#56278] gnu: add raul, add ingen
Date: Tue, 28 Jun 2022 14:30:47 +0000	[thread overview]
Message-ID: <52554c2fa03a49fa9b4ffcf332084cff@uni-bielefeld.de> (raw)


[-- Attachment #1.1: Type: text/plain, Size: 75 bytes --]

Hi,


looking forward to your review. Thanks and

kind regards,
FPS

[-- Attachment #1.2: Type: text/html, Size: 537 bytes --]

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: add_raul_ingen.patch --]
[-- Type: text/x-patch; name="add_raul_ingen.patch", Size: 2853 bytes --]

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 8ec78f665c..85a994bbea 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -2679,6 +2679,75 @@ (define-public audio-to-midi
 frequencies.  This data is then formatted to MIDI and written to disk.")
     (license license:expat)))
 
+(define-public raul
+  (package
+    (name "raul")
+    (version "c56e7259")
+    (source
+      (origin
+        (method git-fetch)
+        (uri (git-reference
+              (url "https://gitlab.com/drobilla/raul")
+              (commit "c56e72595ac6478639f6a0b074d24946d652dc4b")
+              (recursive? #t)))
+        (file-name (git-file-name name version))
+        (sha256
+          (base32
+            "1s87ma7pn5g1054rhizmjcjzk5fyil47nk6d8ql4grr85hghrk39"))))
+    (build-system waf-build-system)
+    (arguments
+     '(#:phases (modify-phases %standard-phases
+                  (delete 'check))))
+    (native-inputs
+     (list python pkg-config))
+    (home-page "http://drobilla.net/software/raul.html")
+    (synopsis "A realtime audio utility library for C++")
+    (description
+     "Raul (Realtime Audio Utility Library) is a C++ utility library
+primarily aimed at audio/musical applications.
+It is used by Ingen, Patchage, and Machina.")
+    (license license:gpl3+)))
+         
+(define-public ingen
+  (package
+    (name "ingen")
+    (version "41dcb999")
+    (source
+      (origin
+        (method git-fetch)
+        (uri (git-reference
+              (url "https://gitlab.com/drobilla/ingen")
+              (commit "41dcb999034254a6aa1161610c38978b0b819b15")
+              (recursive? #t)))
+        (file-name (git-file-name name version))
+        (sha256
+          (base32
+            "0bibwpgjijsz3jj9v43fvgna65w31j65r1r69hp33q6n797jq23s"))))
+    (build-system waf-build-system)
+    (arguments
+     '(#:phases (modify-phases %standard-phases
+                  (delete 'check))
+       #:configure-flags
+       (list
+        (string-append "LDFLAGS=-Wl,-rpath=" (assoc-ref %outputs "out") "/lib"))))
+    (native-inputs
+     (list
+      python pkg-config boost lilv suil lv2
+      raul jack-1 portaudio libsigc++-2 alsa-lib
+      glibmm-2.64 gtkmm-2 ganv))
+    (home-page "http://drobilla.net/software/ingen.html")
+    (synopsis "Realtime modular audio system based on LV2")
+    (description
+     "Ingen is built around LV2 technology and a strict separation
+of engine from user interface.  The engine is controlled
+exclusively through a protocol, and can execute as a
+headless process, with an in-process GUI, or as an LV2
+plugin.  The GUI can run as a program which communicates
+over a Unix or TCP/IP socket, or as an embeddable LV2
+GUI which communicates via LV2 ports.")
+    (license license:agpl3+)))
+         
+
 (define-public lilv
   (package
     (name "lilv")

                 reply	other threads:[~2022-06-28 14:54 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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

  List information: https://guix.gnu.org/

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

  git send-email \
    --in-reply-to=52554c2fa03a49fa9b4ffcf332084cff@uni-bielefeld.de \
    --to=florian_paul.schmidt@uni-bielefeld.de \
    --cc=56278@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 public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).