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.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. size = scalable
  2. context = status
  3. iconsdir = $(themedir)/$(size)/$(context)
  4. icons_DATA = \
  5. audio-volume-high.svg \
  6. audio-volume-low.svg \
  7. audio-volume-medium.svg \
  8. audio-volume-muted.svg \
  9. battery-caution.svg \
  10. dialog-error.svg \
  11. dialog-information.svg \
  12. dialog-warning.svg \
  13. folder-drag-accept.icon \
  14. folder-drag-accept.svg \
  15. folder-open.svg \
  16. folder-visiting.icon \
  17. folder-visiting.svg \
  18. image-loading.svg \
  19. image-missing.svg \
  20. mail-attachment.svg \
  21. network-error.svg \
  22. network-idle.svg \
  23. network-offline.svg \
  24. network-receive.svg \
  25. network-transmit.svg \
  26. network-transmit-receive.svg \
  27. network-wireless-encrypted.svg \
  28. printer-error.svg \
  29. software-update-available.svg \
  30. software-update-urgent.svg \
  31. user-trash-full.svg \
  32. weather-clear.svg \
  33. weather-clear-night.svg \
  34. weather-few-clouds.svg \
  35. weather-few-clouds-night.svg \
  36. weather-overcast.svg \
  37. weather-severe-alert.svg \
  38. weather-showers.svg \
  39. weather-showers-scattered.svg \
  40. weather-snow.svg \
  41. weather-storm.svg
  42. EXTRA_DIST = \
  43. $(icons_DATA)
  44. install-data-local: install-iconsDATA
  45. (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context))
  46. if ENABLE_LARGE_BITMAPS
  47. for i in 48 64 72 96 128; do \
  48. pngdir="$(DESTDIR)$(themedir)/$${i}x$${i}/$(context)"; \
  49. $(mkinstalldirs) $$pngdir; \
  50. for icon in $(icons_DATA); do \
  51. $(top_builddir)/svg2png.sh $$i $$pngdir $(srcdir)/$$icon; \
  52. done; \
  53. (cd $(DESTDIR)$(themedir)/$${i}x$${i} && $(ICONMAP) -c $(context)); \
  54. done
  55. endif
  56. uninstall-local:
  57. for i in 48 64 72 96 128; do \
  58. pngdir="$(DESTDIR)$(themedir)/$${i}x$${i}/$(context)"; \
  59. for icon in $(icons_DATA); do \
  60. iname=`echo $$icon|sed -e "s/svg/png/g"`; \
  61. rm -f $$pngdir/$$iname; \
  62. done; \
  63. done