unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Thorsten Wilms <t_w_@freenet.de>
To: 51393@debbugs.gnu.org
Cc: Thorsten Wilms <t_w_@freenet.de>
Subject: [bug#51393] [PATCH] Add bespoke-synth.
Date: Mon, 25 Oct 2021 20:45:57 +0200	[thread overview]
Message-ID: <20211025184557.8119-1-t_w_@freenet.de> (raw)

* gnu/packages/audio.scm (bespoke-synth): New variable.
---
Bespoke builds and runs, but so far I get no audio output and there’s a mouse
pointer offset that hinders actual use. Submitting this to hopefully avoid
duplicated work.

 gnu/packages/audio.scm | 44 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 44 insertions(+)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index faf106fc68..4f11a74fb8 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -5566,3 +5566,47 @@ (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 bespoke-synth
+  ;; 1.0.0 release tarball lacks CMakeLists.txt,
+  ;; so I picked current git, instead.
+  (let ((commit "88f1f1375da346e1a83fc8e794b3a30e01d2db85")
+	(revision "1"))
+    (package
+      (name "bespoke-synth")
+      (version "1.0.1-devel")
+      (source
+       (origin
+	 (method git-fetch)
+	 (uri
+	  (git-reference
+	   (url "https://github.com/BespokeSynth/BespokeSynth.git")
+	   (commit commit)
+	   (recursive? #t))) ; Uses git submodules
+	 (file-name (git-file-name name version))
+	 (sha256
+	  (base32 "15ddsycbd32kwb2qy4pgd6mzi3nxkkxbh3xfh761pnh954ahm87k"))))
+      (build-system cmake-build-system)
+      (arguments
+       `(#:tests? #f ; No test target
+	 #:configure-flags `("-DCMAKE_BUILD_TYPE=Release --parallel 4 --config Release")))
+      (inputs
+       `(("python" ,python)
+	 ("x11" ,libx11)
+	 ("libxrandr" ,libxrandr)
+	 ("libxinerama" ,libxinerama)
+	 ("libxcursor" ,libxcursor)
+	 ("libxcursor" ,libxcursor)
+	 ("freetype" ,freetype)
+	 ("libcurl" ,curl)
+	 ("alsa-lib" ,alsa-lib)
+	 ("libusb" ,libusb)
+	 ("gtk" ,gtk+)
+	 ("webkitgtk" ,webkitgtk)
+	 ("jack" ,jack-1)))
+      (native-inputs `(("pkg-config" ,pkg-config)))
+      (home-page "https://www.bespokesynth.com")
+      (synopsis "Modular audio synthesis environment.")
+      (description "Bespoke is a modular audio synthesis environment.  It 
+includes over 190 modules and supports VST and MIDI.")
+      (license license:gpl3+))))
-- 
2.33.1





                 reply	other threads:[~2021-10-25 18:49 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=20211025184557.8119-1-t_w_@freenet.de \
    --to=t_w_@freenet.de \
    --cc=51393@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).