A Simple X Image Viewer
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

13 lines
280 B

  1. PREFIX = /usr/local
  2. ICONS = 16x16.png 32x32.png 48x48.png 64x64.png 128x128.png
  3. all:
  4. install:
  5. for f in $(ICONS); do \
  6. dir="$(DESTDIR)$(PREFIX)/share/icons/hicolor/$${f%.png}/apps"; \
  7. mkdir -p "$$dir"; \
  8. cp "$$f" "$$dir/sxiv.png"; \
  9. chmod 644 "$$dir/sxiv.png"; \
  10. done