diff options
author | Eugene Sandulenko | 2016-08-02 00:04:49 +0300 |
---|---|---|
committer | GitHub | 2016-08-02 00:04:49 +0300 |
commit | 70dc846b952eaf1ffdb67c8820d156a61df2f7df (patch) | |
tree | ea855e46fc5c25cca602810c331d5cb087022336 | |
parent | 6f87a2b2e8088d23687692ae32cb45292e6703ba (diff) | |
parent | 1912c55682a09e35f239fe5c06dd283eabaedde6 (diff) | |
download | scummvm-rg350-70dc846b952eaf1ffdb67c8820d156a61df2f7df.tar.gz scummvm-rg350-70dc846b952eaf1ffdb67c8820d156a61df2f7df.tar.bz2 scummvm-rg350-70dc846b952eaf1ffdb67c8820d156a61df2f7df.zip |
Merge pull request #797 from Mailaender/appdata
DISTS: Added an appdata.xml file
-rw-r--r-- | dists/scummvm.appdata.xml | 28 | ||||
-rw-r--r-- | ports.mk | 10 |
2 files changed, 38 insertions, 0 deletions
diff --git a/dists/scummvm.appdata.xml b/dists/scummvm.appdata.xml new file mode 100644 index 0000000000..e9185cd2a6 --- /dev/null +++ b/dists/scummvm.appdata.xml @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="UTF-8"?> +<component type="desktop"> + <id>scummvm.desktop</id> + <metadata_license>CC0-1.0</metadata_license> + <project_license>GPL-2.0+</project_license> + <name>ScummVM</name> + <summary>Interpreter for several adventure games</summary> + <description> + <p> + ScummVM is an interpreter that will play graphic adventure games written + for LucasArts' SCUMM virtual machine (such as Day of the Tentacle and + Monkey Island), Sierra's AGI adventures (such as early King's Quest and + Space Quest games), Adventure Soft's Simon the Sorcerer 1, 2 and Feeble Files, + Revolution Software's Beneath a Steel Sky and Broken Sword 1, 2 and 2.5, + Interactive Binary Illusions' Flight of the Amazon Queen, + Coktel Vision's Gobliiins, Wyrmkeep's Inherit the Earth, Westwood's + Legend of Kyrandia, and various others. + </p> + </description> + <screenshots> + <screenshot type="default"> + <image>http://wiki.scummvm.org/images/f/f8/Launcherwithgames.png</image> + <caption>ScummVM Launcher</caption> + </screenshot> + </screenshots> + <url type="homepage">https://www.scummvm.org</url> + <updatecontact>scummvm-devel@lists.sourceforge.net</updatecontact> +</component> @@ -18,6 +18,10 @@ install: $(INSTALL) -c -m 644 $(DIST_FILES_DOCS) "$(DESTDIR)$(docdir)" $(INSTALL) -d "$(DESTDIR)$(datadir)" $(INSTALL) -c -m 644 $(DIST_FILES_THEMES) $(DIST_FILES_ENGINEDATA) "$(DESTDIR)$(datadir)/" + $(INSTALL) -d "$(DESTDIR)$(datarootdir)/applications" + $(INSTALL) -c -m 644 "$(srcdir)/dists/scummvm.desktop" "$(DESTDIR)$(datarootdir)/applications/scummvm.desktop" + $(INSTALL) -d "$(DESTDIR)$(datarootdir)/appdata" + $(INSTALL) -c -m 644 "$(srcdir)/dists/scummvm.appdata.xml" "$(DESTDIR)$(datarootdir)/appdata/scummvm.appdata.xml" ifdef DYNAMIC_MODULES $(INSTALL) -d "$(DESTDIR)$(libdir)/scummvm/" $(INSTALL) -c -m 644 $(PLUGINS) "$(DESTDIR)$(libdir)/scummvm/" @@ -36,6 +40,10 @@ install-strip: $(INSTALL) -c -m 644 $(DIST_FILES_DOCS) "$(DESTDIR)$(docdir)" $(INSTALL) -d "$(DESTDIR)$(datadir)" $(INSTALL) -c -m 644 $(DIST_FILES_THEMES) $(DIST_FILES_ENGINEDATA) "$(DESTDIR)$(datadir)/" + $(INSTALL) -d "$(DESTDIR)$(datarootdir)/applications" + $(INSTALL) -c -m 644 "$(srcdir)/dists/scummvm.desktop" "$(DESTDIR)$(datarootdir)/applications/scummvm.desktop" + $(INSTALL) -d "$(DESTDIR)$(datarootdir)/appdata" + $(INSTALL) -c -m 644 "$(srcdir)/dists/scummvm.appdata.xml" "$(DESTDIR)$(datarootdir)/appdata/scummvm.appdata.xml" ifdef DYNAMIC_MODULES $(INSTALL) -d "$(DESTDIR)$(libdir)/scummvm/" $(INSTALL) -c -s -m 644 $(PLUGINS) "$(DESTDIR)$(libdir)/scummvm/" @@ -48,6 +56,8 @@ uninstall: rm -f "$(DESTDIR)$(datarootdir)/icons/hicolor/scalable/apps/scummvm.svg" rm -rf "$(DESTDIR)$(docdir)" rm -rf "$(DESTDIR)$(datadir)" + rm -f "$(DESTDIR)$(datarootdir)/applications/scummvm.desktop" + rm -f "$(DESTDIR)$(datarootdir)/appdata/scummvm.appdata.xml" ifdef DYNAMIC_MODULES rm -rf "$(DESTDIR)$(libdir)/scummvm/" endif |