diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -121,6 +121,8 @@ install: | |||
121 | $(foreach SIZE,$(ICON_SIZES),$(call install-icon,$(SIZE));) | 121 | $(foreach SIZE,$(ICON_SIZES),$(call install-icon,$(SIZE));) |
122 | install -Dm644 $(addprefix $(APPICON_DIR), full_color.svg) $(addprefix $(INSTALL_DIR), share/icons/hicolor/scalable/apps/$(APP_ID).svg) | 122 | install -Dm644 $(addprefix $(APPICON_DIR), full_color.svg) $(addprefix $(INSTALL_DIR), share/icons/hicolor/scalable/apps/$(APP_ID).svg) |
123 | desktop-file-install --dir=$(addprefix $(INSTALL_DIR), share/applications/) $(addprefix $(RESOURCES_DIR), $(APP_ID).desktop) | 123 | desktop-file-install --dir=$(addprefix $(INSTALL_DIR), share/applications/) $(addprefix $(RESOURCES_DIR), $(APP_ID).desktop) |
124 | mkdir -p $(addprefix $(INSTALL_DIR), share/appdata/) | ||
125 | install -Dm644 $(addprefix $(RESOURCES_DIR), $(APP_ID).appdata.xml) $(addprefix $(INSTALL_DIR), share/appdata/) | ||
124 | gtk-update-icon-cache -f -t $(addprefix $(INSTALL_DIR), share/icons/hicolor) | 126 | gtk-update-icon-cache -f -t $(addprefix $(INSTALL_DIR), share/icons/hicolor) |
125 | 127 | ||
126 | .PHONY: uninstall | 128 | .PHONY: uninstall |
@@ -134,6 +136,7 @@ uninstall: | |||
134 | $(foreach SIZE,$(ICON_SIZES),$(call uninstall-icon,$(SIZE));) | 136 | $(foreach SIZE,$(ICON_SIZES),$(call uninstall-icon,$(SIZE));) |
135 | $(GNU_RM) -f $(addprefix $(INSTALL_DIR), share/icons/hicolor/scalable/apps/$(APP_ID).svg) | 137 | $(GNU_RM) -f $(addprefix $(INSTALL_DIR), share/icons/hicolor/scalable/apps/$(APP_ID).svg) |
136 | $(GNU_RM) -f $(addsuffix $(APP_ID).desktop, $(addprefix $(INSTALL_DIR), share/applications/)) | 138 | $(GNU_RM) -f $(addsuffix $(APP_ID).desktop, $(addprefix $(INSTALL_DIR), share/applications/)) |
139 | $(GNU_RM) -f $(addsuffix $(APP_ID).appdata.xml, $(addprefix $(INSTALL_DIR), share/appdata/)) | ||
137 | 140 | ||
138 | .PHONY: clean | 141 | .PHONY: clean |
139 | 142 | ||