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.

62 lines
1.8KB

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