issue #244 appstream file

- placing the appstream metainfo file in the right path according to https://www.freedesktop.org/software/appstream/docs/chap-Metadata.html#spec-component-location
This commit is contained in:
Stuardo -StR - Rodríguez 2020-05-08 08:54:37 -06:00 committed by Gaetan Semet
parent d28cc66b3d
commit c9a7c66eee
2 changed files with 3 additions and 3 deletions

View File

@ -127,8 +127,8 @@ install-schemas:
install -dm755 "$(DESTDIR)$(datadir)/applications"
install -Dm644 "$(DEV_DATA_DIR)/guake.desktop" "$(DESTDIR)$(datadir)/applications/"
install -Dm644 "$(DEV_DATA_DIR)/guake-prefs.desktop" "$(DESTDIR)$(datadir)/applications/"
install -dm755 "$(DESTDIR)$(datadir)/metainfo"
install -Dm644 "$(DEV_DATA_DIR)/guake.appdata.xml" "$(DESTDIR)$(datadir)/metainfo/"
install -dm755 "$(DESTDIR)/metainfo/"
install -Dm644 "$(DEV_DATA_DIR)/guake.desktop.metainfo.xml" "$(DESTDIR)/metainfo/"
install -dm755 "$(DESTDIR)$(IMAGE_DIR)"
install -Dm644 "$(DEV_DATA_DIR)"/pixmaps/*.png "$(DESTDIR)$(IMAGE_DIR)/"
install -Dm644 "$(DEV_DATA_DIR)"/pixmaps/*.svg "$(DESTDIR)$(IMAGE_DIR)/"
@ -161,7 +161,7 @@ purge-system: uninstall-system reset
uninstall-schemas:
rm -f "$(DESTDIR)$(datadir)/applications/guake.desktop"
rm -f "$(DESTDIR)$(datadir)/applications/guake-prefs.desktop"
rm -f "$(DESTDIR)$(datadir)/metainfo/guake.appdata.xml"
rm -f "$(DESTDIR)/metainfo/guake.desktop.metainfo.xml"
rm -f "$(DESTDIR)$(datadir)/pixmaps/guake.png"
rm -fr "$(DESTDIR)$(IMAGE_DIR)"
rm -fr "$(DESTDIR)$(SHARE_DIR)"