From 53248ecd2f7929595c87fdfab474d9fdf4f41a2a Mon Sep 17 00:00:00 2001 From: Matthias Mailänder Date: Fri, 29 Jul 2016 19:46:25 +0200 Subject: DISTS: Add an appdata.xml file. --- dists/scummvm.appdata.xml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 dists/scummvm.appdata.xml 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 @@ + + + scummvm.desktop + CC0-1.0 + GPL-2.0+ + ScummVM + Interpreter for several adventure games + +

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

+
+ + + http://wiki.scummvm.org/images/f/f8/Launcherwithgames.png + ScummVM Launcher + + + https://www.scummvm.org + scummvm-devel@lists.sourceforge.net +
-- cgit v1.2.3 From 67c101a4a2494813f25b86a8843eef15b7f34b20 Mon Sep 17 00:00:00 2001 From: Matthias Mailänder Date: Fri, 29 Jul 2016 21:40:50 +0200 Subject: BUILD: Install the .desktop file. --- ports.mk | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ports.mk b/ports.mk index dce5a5d153..c4d1fd3b49 100644 --- a/ports.mk +++ b/ports.mk @@ -18,6 +18,8 @@ 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" ifdef DYNAMIC_MODULES $(INSTALL) -d "$(DESTDIR)$(libdir)/scummvm/" $(INSTALL) -c -m 644 $(PLUGINS) "$(DESTDIR)$(libdir)/scummvm/" @@ -36,6 +38,8 @@ 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" ifdef DYNAMIC_MODULES $(INSTALL) -d "$(DESTDIR)$(libdir)/scummvm/" $(INSTALL) -c -s -m 644 $(PLUGINS) "$(DESTDIR)$(libdir)/scummvm/" @@ -48,6 +52,7 @@ 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" ifdef DYNAMIC_MODULES rm -rf "$(DESTDIR)$(libdir)/scummvm/" endif -- cgit v1.2.3 From 1912c55682a09e35f239fe5c06dd283eabaedde6 Mon Sep 17 00:00:00 2001 From: Matthias Mailänder Date: Fri, 29 Jul 2016 22:04:25 +0200 Subject: BUILD: Install the appdata.xml file. --- ports.mk | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ports.mk b/ports.mk index c4d1fd3b49..b2a34cb9f0 100644 --- a/ports.mk +++ b/ports.mk @@ -20,6 +20,8 @@ install: $(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/" @@ -40,6 +42,8 @@ install-strip: $(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/" @@ -53,6 +57,7 @@ uninstall: 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 -- cgit v1.2.3