all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#38689] [PATCH] gnu: Add vl1-emulator
@ 2019-12-20 15:24 Alexandros Theodotou
  2019-12-20 15:30 ` Alexandros Theodotou
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Alexandros Theodotou @ 2019-12-20 15:24 UTC (permalink / raw)
  To: 38689


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

Hi,

This is a newly ported LV2 plugin. A release tag is planned for
January, so I am using a commit hash for now. I will change it to a tag
when it is released.

I have tested it and it works.

Thanks,
Alex

[-- Attachment #1.2: 0001-gnu-Add-vl1-emulator.patch --]
[-- Type: text/x-patch, Size: 2299 bytes --]

From cdbae63e3b00da87c2968e8f7c4876f8b708392c Mon Sep 17 00:00:00 2001
From: Alexandros Theodotou <alex@zrythm.org>
Date: Fri, 20 Dec 2019 15:20:20 +0000
Subject: [PATCH] gnu: Add vl1-emulator.

* gnu/packages/music.scm (vl1-emulator): New variable.
---
 gnu/packages/music.scm | 44 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 44 insertions(+)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index f80fb067e8..cc019b8c69 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -5106,3 +5106,47 @@ MIDI drums and comes as two separate drumkits: Black Pearl and Red Zeppelin.")
     (description "Helm is a cross-platform polyphonic synthesizer available standalone
 and as an LV2 plugin.")
     (license license:gpl3+)))
+
+(define-public vl1-emulator
+  (package
+    (name "vl1-emulator")
+    (version "0.0.0-1")
+    (source
+      (origin
+        (method git-fetch)
+        (uri (git-reference
+               (url "https://github.com/linuxmao-org/VL1-emulator.git")
+               (commit "defa85fea1574cea81cbe53a6ab4061a4a9a089e")
+               (recursive? #t))) ; for the DISTRHO plugin framework
+        (file-name (git-file-name name version))
+        (sha256
+         (base32
+          "1k5ig72silah5m9lnqwkn49hwkni1zkpz4y1nvnkg2a2ycwfqz53"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:tests? #f ; no check target
+       #:make-flags
+       (list (string-append "DESTDIR=" (assoc-ref %outputs "out"))
+             (string-append "PREFIX="))
+       #:phases
+       (modify-phases %standard-phases
+         (add-before 'build 'set-CC-variable
+           (lambda _
+             (setenv "CC" "gcc")))
+         ;; no configure script
+         (delete 'configure))))
+    (inputs
+     `(("cairo" ,cairo)
+       ("jack" ,jack-1)
+       ("mesa" ,mesa)
+       ("libx11" ,libx11)))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)
+       ("lv2" ,lv2)))
+    (home-page "https://github.com/brummer10/gxplugins.lv2")
+    (synopsis "Emulator of Casio VL-Tone VL1")
+    (description
+     "An emulator of Casio VL-Tone VL1, based on source code by PolyValens,
+offered as an LV2 plugin and a standalone JACK application.")
+    ;; Expat or CC0
+    (license (list license:expat license:cc0))))
-- 
2.24.1


[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2020-03-29 20:28 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-20 15:24 [bug#38689] [PATCH] gnu: Add vl1-emulator Alexandros Theodotou
2019-12-20 15:30 ` Alexandros Theodotou
2020-01-21  5:04 ` Alexandros Theodotou
2020-02-25 14:55 ` [bug#38689] Add VL1 emulator, regrader and fogpad Alexandros Theodotou
2020-02-26 22:07   ` Alexandros Theodotou
2020-03-21 19:24 ` [bug#38689] [PATCH] gnu: Add vl1-emulator Alexandros Theodotou
2020-03-29 20:27   ` bug#38689: " Marius Bakke

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.