[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#74723] [PATCH 08/19] gnu: lmms: Enable Stk Mallets and GIG Player.
From: |
Sughosha |
Subject: |
[bug#74723] [PATCH 08/19] gnu: lmms: Enable Stk Mallets and GIG Player. |
Date: |
Sat, 7 Dec 2024 17:50:22 +0530 |
* gnu/packages/music.scm (lmms)[inputs]: Add libgig and stk.
[arguments]<#:phases>: Add patch-stk-path.
Change-Id: I8116d603399f75571dfc37bc43760334df3a764e
---
gnu/packages/music.scm | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index de6ef7e7f6..844347af62 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -5313,6 +5313,12 @@ (define-public lmms
(lambda* (#:key inputs #:allow-other-keys)
(copy-recursively (assoc-ref inputs "rpmalloc")
"src/3rdparty/rpmalloc/rpmalloc")))
+ (add-after 'unpack 'patch-stk-path
+ (lambda* (#:key inputs #:allow-other-keys)
+ (substitute* "cmake/modules/FindSTK.cmake"
+ (("/usr") (assoc-ref inputs "stk")))
+ (substitute* "src/core/ConfigManager.cpp"
+ (("/usr") (assoc-ref inputs "stk")))))
(add-before 'configure 'set-ldflags
(lambda _
(setenv "LDFLAGS"
@@ -5346,6 +5352,7 @@ (define-public lmms
jack-2
ladspa
lame
+ libgig
libogg
libsamplerate
libsndfile
@@ -5356,7 +5363,8 @@ (define-public lmms
pulseaudio
qtbase-5
qtx11extras
- sdl))
+ sdl
+ stk))
(home-page "https://lmms.io/")
(synopsis "Music composition tool")
(description "LMMS is a digital audio workstation. It includes tools for
--
2.46.0
- [bug#74723] [PATCH 01/19] gnu: lmms: Fix building carla plugins., (continued)
- [bug#74723] [PATCH 01/19] gnu: lmms: Fix building carla plugins., Sughosha, 2024/12/07
- [bug#74723] [PATCH 03/19] gnu: lmms: Enable libsoundio and PulseAudio support., Sughosha, 2024/12/07
- [bug#74723] [PATCH 02/19] gnu: carla: Fix making carla executable., Sughosha, 2024/12/07
- [bug#74723] [PATCH 04/19] gnu: carla: Enable PulseAudio support., Sughosha, 2024/12/07
- [bug#74723] [PATCH 06/19] gnu: carla: Add native-search-paths., Sughosha, 2024/12/07
- [bug#74723] [PATCH 05/19] gnu: lmms: Enable MP3 file format support for project export., Sughosha, 2024/12/07
- [bug#74723] [PATCH 07/19] gnu: Add stk., Sughosha, 2024/12/07
- [bug#74723] [PATCH 11/19] gnu: Add ringbuffer., Sughosha, 2024/12/07
- [bug#74723] [PATCH 09/19] gnu: lmms: Enable Wayland support., Sughosha, 2024/12/07
- [bug#74723] [PATCH 10/19] gnu: carla: Enable Wayland support., Sughosha, 2024/12/07
- [bug#74723] [PATCH 08/19] gnu: lmms: Enable Stk Mallets and GIG Player.,
Sughosha <=
- [bug#74723] [PATCH 19/19] gnu: carla-2.6: Update to 2.6.0-1.17000e7., Sughosha, 2024/12/07
- [bug#74723] [PATCH 17/19] gnu: lmms: Replace carla with carla-2.4., Sughosha, 2024/12/07
- [bug#74723] [PATCH 18/19] gnu: Add lmms-1.3., Sughosha, 2024/12/07
- [bug#74723] [PATCH 13/19] gnu: Add adplug., Sughosha, 2024/12/07
- [bug#74723] [PATCH 12/19] gnu: Add libbinio., Sughosha, 2024/12/07
- [bug#74723] [PATCH 14/19] gnu: Add exprtk., Sughosha, 2024/12/07
- [bug#74723] [PATCH 15/19] gnu: carla: Update to 2.5.9., Sughosha, 2024/12/07
- [bug#74723] [PATCH 16/19] gnu: Add carla-2.4., Sughosha, 2024/12/07