External, Non-PPA KXStudio Repository
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.

28 lines
1.0KB

  1. commit acfba5687e726f09b96a626a1aa548c876f4ffc0
  2. Author: falkTX <falktx@falktx.com>
  3. Date: Wed Sep 21 15:57:23 2022 +0100
  4. Install CardinalNative during "make install" step
  5. Signed-off-by: falkTX <falktx@falktx.com>
  6. diff --git a/Makefile b/Makefile
  7. index b2b722f..7673c4f 100644
  8. --- a/Makefile
  9. +++ b/Makefile
  10. @@ -311,10 +311,12 @@ ifeq ($(VST3_SUPPORTED),true)
  11. cp -rL bin/CardinalSynth.vst3/Contents/*-* $(DESTDIR)$(PREFIX)/lib/vst3/CardinalSynth.vst3/Contents/
  12. endif
  13. - install -m 755 bin/Cardinal$(APP_EXT) $(DESTDIR)$(PREFIX)/bin/
  14. + install -m 755 bin/Cardinal$(APP_EXT) $(DESTDIR)$(PREFIX)/bin/
  15. + install -m 755 bin/CardinalNative$(APP_EXT) $(DESTDIR)$(PREFIX)/bin/
  16. +
  17. cp -rL bin/Cardinal.lv2/resources/* $(DESTDIR)$(PREFIX)/share/cardinal/
  18. - install -m 644 README.md $(DESTDIR)$(PREFIX)/share/doc/cardinal/
  19. + install -m 644 README.md $(DESTDIR)$(PREFIX)/share/doc/cardinal/
  20. install -m 644 docs/*.md docs/*.png $(DESTDIR)$(PREFIX)/share/doc/cardinal/docs/
  21. # --------------------------------------------------------------