Cross-Platform build scripts for audio plugins
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
1.8KB

  1. diff --git a/Makefile b/Makefile
  2. index 0eaca77..fea6344 100644
  3. --- a/Makefile
  4. +++ b/Makefile
  5. @@ -5,9 +5,9 @@ PREFIX ?= /usr
  6. INSTALL_DIR ?= $(DESTDIR)$(PREFIX)/lib/lv2
  7. CXXFLAGS ?= -g -O3
  8. CXX ?= g++
  9. -TARGET ?= gate_gui.so abGateQt/libabGateQt.so gate.so
  10. +TARGET ?= gate.so
  11. -$(BUNDLE): manifest.ttl gate.ttl bypass_on.png bypass_off.png knob.png background.png $(TARGET)
  12. +$(BUNDLE): manifest.ttl gate.ttl $(TARGET)
  13. rm -rf $(BUNDLE)
  14. mkdir $(BUNDLE)
  15. cp $^ $(BUNDLE)
  16. diff -U 3 -H -w -E -d -r -N -- abGate-1.1.7.orig/gate.ttl abGate-1.1.7/gate.ttl
  17. --- abGate-1.1.7.orig/gate.ttl 2012-04-21 07:18:24.000000000 +0200
  18. +++ abGate-1.1.7/gate.ttl 2015-07-16 18:28:50.579702673 +0200
  19. @@ -6,16 +6,6 @@
  20. @prefix foaf: <http://xmlns.com/foaf/0.1/>.
  21. -<http://hippie.lt/lv2/gate/guiQt5>
  22. - a ui:Qt5UI;
  23. - ui:requiredFeature ui:makeResident;
  24. - ui:optionalFeature ui:noUserResize.
  25. -
  26. -<http://hippie.lt/lv2/gate/gui>
  27. - a ui:GtkUI;
  28. - ui:requiredFeature ui:makeResident;
  29. - ui:optionalFeature ui:noUserResize.
  30. -
  31. <http://hippie.lt/lv2/gate>
  32. a lv2:Plugin, lv2:GatePlugin;
  33. lv2:binary <gate.so>;
  34. @@ -37,9 +27,6 @@
  35. doap:license <http://usefulinc.com/doap/licenses/lgpl>;
  36. - ui:ui <http://hippie.lt/lv2/gate/guiQt5>;
  37. - ui:ui <http://hippie.lt/lv2/gate/gui>;
  38. -
  39. lv2:port [
  40. a lv2:AudioPort, lv2:OutputPort;
  41. lv2:index 0;
  42. diff -U 3 -H -w -E -d -r -N -- abGate-1.1.7.orig/manifest.ttl abGate-1.1.7/manifest.ttl
  43. --- abGate-1.1.7.orig/manifest.ttl 2012-04-21 07:16:31.000000000 +0200
  44. +++ abGate-1.1.7/manifest.ttl 2015-07-16 18:32:13.342625579 +0200
  45. @@ -6,14 +6,3 @@
  46. a lv2:Plugin, lv2:GatePlugin;
  47. lv2:binary <gate.so>;
  48. rdfs:seeAlso <gate.ttl>.
  49. -
  50. -<http://hippie.lt/lv2/gate/guiQt5>
  51. - a ui:Qt5UI;
  52. - ui:binary <libabGateQt.so>;
  53. - rdfs:seeAlso <gate.ttl>.
  54. -
  55. -<http://hippie.lt/lv2/gate/gui>
  56. - a ui:GtkUI;
  57. - ui:binary <gate_gui.so>;
  58. - rdfs:seeAlso <gate.ttl>.
  59. -