all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Alexandros Theodotou <alex@zrythm.org>
To: 38689@debbugs.gnu.org
Subject: [bug#38689] [PATCH] gnu: Add vl1-emulator
Date: Fri, 20 Dec 2019 15:30:26 +0000	[thread overview]
Message-ID: <543f4f865442829c576d5e8c9b3dd480043d323d.camel@zrythm.org> (raw)
In-Reply-To: <4c5d863876ffa71c9e20562c8e744130dec4cac7.camel@zrythm.org>


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

Fixed the wrong home page

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

From 13f4dcdc8f2395d9899e3393984474bf7333614c 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..b8b844e6fd 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/linuxmao-org/VL1-emulator")
+    (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 --]

  reply	other threads:[~2019-12-20 15:31 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-12-20 15:24 [bug#38689] [PATCH] gnu: Add vl1-emulator Alexandros Theodotou
2019-12-20 15:30 ` Alexandros Theodotou [this message]
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

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=543f4f865442829c576d5e8c9b3dd480043d323d.camel@zrythm.org \
    --to=alex@zrythm.org \
    --cc=38689@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.