-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: falkTX <falktx@falktx.com>
- Loading branch information
Showing
4 changed files
with
66 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
diff --git a/rt-neural-generic/CMakeLists.txt b/rt-neural-generic/CMakeLists.txt | ||
index 129a907..f1126cd 100644 | ||
--- a/rt-neural-generic/CMakeLists.txt | ||
+++ b/rt-neural-generic/CMakeLists.txt | ||
@@ -51,7 +51,6 @@ set(LV2_INSTALL_DIR ${DESTDIR}${PREFIX}/rt-neural-generic.lv2) | ||
|
||
# config install | ||
install(TARGETS rt-neural-generic | ||
- LIBRARY | ||
DESTINATION ${LV2_INSTALL_DIR} | ||
) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 52 additions & 0 deletions
52
plugins/package/mod-utilities/01_fix-win-mac-install.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
diff --git a/SwitchBox_1-2/Makefile b/SwitchBox_1-2/Makefile | ||
index 97b5ca0..6274c69 100644 | ||
--- a/SwitchBox_1-2/Makefile | ||
+++ b/SwitchBox_1-2/Makefile | ||
@@ -39,7 +39,7 @@ clean: | ||
install: build | ||
install -d $(DESTDIR)$(PREFIX)/lib/lv2/$(NAME).lv2 | ||
|
||
- install -m 644 $(NAME).lv2/*.so $(DESTDIR)$(PREFIX)/lib/lv2/$(NAME).lv2/ | ||
+ install -m 644 $(NAME).lv2/*$(LIB_EXT) $(DESTDIR)$(PREFIX)/lib/lv2/$(NAME).lv2/ | ||
install -m 644 $(NAME).lv2/*.ttl $(DESTDIR)$(PREFIX)/lib/lv2/$(NAME).lv2/ | ||
|
||
# -------------------------------------------------------------- | ||
diff --git a/SwitchBox_1-2_st/Makefile b/SwitchBox_1-2_st/Makefile | ||
index 4ca3c29..36b35fb 100644 | ||
--- a/SwitchBox_1-2_st/Makefile | ||
+++ b/SwitchBox_1-2_st/Makefile | ||
@@ -39,7 +39,7 @@ clean: | ||
install: build | ||
install -d $(DESTDIR)$(PREFIX)/lib/lv2/$(NAME).lv2 | ||
|
||
- install -m 644 $(NAME).lv2/*.so $(DESTDIR)$(PREFIX)/lib/lv2/$(NAME).lv2/ | ||
+ install -m 644 $(NAME).lv2/*$(LIB_EXT) $(DESTDIR)$(PREFIX)/lib/lv2/$(NAME).lv2/ | ||
install -m 644 $(NAME).lv2/*.ttl $(DESTDIR)$(PREFIX)/lib/lv2/$(NAME).lv2/ | ||
|
||
# -------------------------------------------------------------- | ||
diff --git a/SwitchBox_2-1/Makefile b/SwitchBox_2-1/Makefile | ||
index 655aeaa..47a0189 100644 | ||
--- a/SwitchBox_2-1/Makefile | ||
+++ b/SwitchBox_2-1/Makefile | ||
@@ -39,7 +39,7 @@ clean: | ||
install: build | ||
install -d $(DESTDIR)$(PREFIX)/lib/lv2/$(NAME).lv2 | ||
|
||
- install -m 644 $(NAME).lv2/*.so $(DESTDIR)$(PREFIX)/lib/lv2/$(NAME).lv2/ | ||
+ install -m 644 $(NAME).lv2/*$(LIB_EXT) $(DESTDIR)$(PREFIX)/lib/lv2/$(NAME).lv2/ | ||
install -m 644 $(NAME).lv2/*.ttl $(DESTDIR)$(PREFIX)/lib/lv2/$(NAME).lv2/ | ||
|
||
# -------------------------------------------------------------- | ||
diff --git a/SwitchBox_2-1_st/Makefile b/SwitchBox_2-1_st/Makefile | ||
index a991ec2..f7c7ccf 100644 | ||
--- a/SwitchBox_2-1_st/Makefile | ||
+++ b/SwitchBox_2-1_st/Makefile | ||
@@ -39,7 +39,7 @@ clean: | ||
install: build | ||
install -d $(DESTDIR)$(PREFIX)/lib/lv2/$(NAME).lv2 | ||
|
||
- install -m 644 $(NAME).lv2/*.so $(DESTDIR)$(PREFIX)/lib/lv2/$(NAME).lv2/ | ||
+ install -m 644 $(NAME).lv2/*$(LIB_EXT) $(DESTDIR)$(PREFIX)/lib/lv2/$(NAME).lv2/ | ||
install -m 644 $(NAME).lv2/*.ttl $(DESTDIR)$(PREFIX)/lib/lv2/$(NAME).lv2/ | ||
|
||
# -------------------------------------------------------------- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters