Typica is a free program for professional coffee roasters. https://typica.us
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.

Makefile.am 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. size = scalable
  2. context = mimetypes
  3. iconsdir = $(themedir)/$(size)/$(context)
  4. icons_DATA = \
  5. application-certificate.svg \
  6. application-x-executable.svg \
  7. audio-x-generic.svg \
  8. font-x-generic.svg \
  9. image-x-generic.svg \
  10. package-x-generic.svg \
  11. text-html.svg \
  12. text-x-generic.svg \
  13. text-x-generic-template.svg \
  14. text-x-script.svg \
  15. video-x-generic.svg \
  16. x-office-address-book.svg \
  17. x-office-calendar.svg \
  18. x-office-document.svg \
  19. x-office-document-template.svg \
  20. x-office-drawing.svg \
  21. x-office-drawing-template.svg \
  22. x-office-presentation.svg \
  23. x-office-presentation-template.svg \
  24. x-office-spreadsheet.svg \
  25. x-office-spreadsheet-template.svg
  26. EXTRA_DIST = \
  27. $(icons_DATA)
  28. install-data-local: install-iconsDATA
  29. (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context))
  30. if ENABLE_LARGE_BITMAPS
  31. for i in 48 64 72 96 128; do \
  32. pngdir="$(DESTDIR)$(themedir)/$${i}x$${i}/$(context)"; \
  33. $(mkinstalldirs) $$pngdir; \
  34. for icon in $(icons_DATA); do \
  35. $(top_builddir)/svg2png.sh $$i $$pngdir $(srcdir)/$$icon; \
  36. done; \
  37. (cd $(DESTDIR)$(themedir)/$${i}x$${i} && $(ICONMAP) -c $(context)); \
  38. done
  39. endif
  40. uninstall-local:
  41. for i in 48 64 72 96 128; do \
  42. pngdir="$(DESTDIR)$(themedir)/$${i}x$${i}/$(context)"; \
  43. for icon in $(icons_DATA); do \
  44. iname=`echo $$icon|sed -e "s/svg/png/g"`; \
  45. rm -f $$pngdir/$$iname; \
  46. done; \
  47. done