Browse Source

Build and install mod lv2 extensions

Signed-off-by: falkTX <falktx@falktx.com>
tags/v1.0
falkTX 2 years ago
parent
commit
237eb46f19
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
3 changed files with 21 additions and 1 deletions
  1. +6
    -0
      bootstrap-plugins.sh
  2. +14
    -0
      patches/mod-sdk/01_add-makefile.patch
  3. +1
    -1
      setup/versions.sh

+ 6
- 0
bootstrap-plugins.sh View File

@@ -148,6 +148,12 @@ fi
download kxstudio-lv2-extensions "${KXSTUDIO_LV2_EXTENSIONS_VERSION}" "https://github.com/KXStudio/LV2-Extensions.git" "" "git"
build_make kxstudio-lv2-extensions "${KXSTUDIO_LV2_EXTENSIONS_VERSION}"

# ---------------------------------------------------------------------------------------------------------------------
# MOD lv2 extensions

download mod-sdk "${MOD_SDK_VERSION}" "https://github.com/moddevices/mod-sdk.git" "" "git"
build_make mod-sdk "${MOD_SDK_VERSION}"

# ---------------------------------------------------------------------------------------------------------------------
# fluidsynth



+ 14
- 0
patches/mod-sdk/01_add-makefile.patch View File

@@ -0,0 +1,14 @@
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..d0dc367
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,8 @@
+PREFIX ?= /usr/local
+
+all:
+clean:
+
+install:
+ install -d $(DESTDIR)$(PREFIX)/lib/lv2
+ cp -rv *.lv2 $(DESTDIR)$(PREFIX)/lib/lv2/

+ 1
- 1
setup/versions.sh View File

@@ -27,7 +27,7 @@ KXSTUDIO_LV2_EXTENSIONS_VERSION=fae65fbc173cd2c4367e85917a6ef97280532d88
LILV_VERSION=0.24.10
LV2_VERSION=1.18.0
LV2LINT_VERSION=0.8.0
MOD_SDK_VERSION=TODO
MOD_SDK_VERSION=c95cdc26cb90c3c7bcdf6d706b462127d412fb7b
MXML_VERSION=3.1
SERD_VERSION=0.30.6
SORD_VERSION=0.16.6


Loading…
Cancel
Save