[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#61594] [PATCH] gnu: Add libmonome.
From: |
Antero Mejr |
Subject: |
[bug#61594] [PATCH] gnu: Add libmonome. |
Date: |
Sat, 18 Feb 2023 05:15:44 +0000 |
* gnu/packages/music.scm (libmonome): New variable.
---
Also I apologize if WIP patches are not good for this mailing list,
please let me know if that is the case and I will stop sending them.
gnu/packages/music.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 59f295cc14..7f0e9dd793 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -7084,6 +7084,37 @@ (define-public orca-music
(home-page "https://100r.co/site/orca.html")
(license license:expat))))
+(define-public libmonome
+ (package
+ (name "libmonome")
+ (version "1.4.6")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/monome/libmonome")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (modules '((guix build utils)))
+ (snippet #~(substitute* "wscript" ;version string not updated
+ (("VERSION = \".*\"")
+ "VERSION = \"1.4.6\"")))
+ (sha256
+ (base32 "1p0m6myzbmj0zy7vs80blmym0vs1dbzsgl9k7rg98l466yh61mi0"))))
+ (build-system waf-build-system)
+ (arguments
+ (list #:tests? #f ;No target
+ #:configure-flags #~(list (string-append "LDFLAGS=-Wl,-rpath="
+ #$output "/lib"))))
+ (inputs (list eudev liblo))
+ (home-page "https://github.com/monome/libmonome")
+ (synopsis "Library for interacting with monome audio devices")
+ (description "libmonome is a library for interacting with monome devices.
+It was developed to make monome devices easy to use with programming languages
+like C and Python, and for adding wrappers for use in languages with suitable
+FFI.")
+ (license license:isc)))
+
;;;
;;; Avoid adding new packages to the end of this file. To reduce the chances
;;; of a merge conflict, place them above by existing packages with similar
--
2.38.1