[Scummvm-cvs-logs] scummvm master -> 70dc846b952eaf1ffdb67c8820d156a61df2f7df
sev-
sev at scummvm.org
Mon Aug 1 23:04:54 CEST 2016
This automated email contains information about 4 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
53248ecd2f DISTS: Add an appdata.xml file.
67c101a4a2 BUILD: Install the .desktop file.
1912c55682 BUILD: Install the appdata.xml file.
70dc846b95 Merge pull request #797 from Mailaender/appdata
Commit: 53248ecd2f7929595c87fdfab474d9fdf4f41a2a
https://github.com/scummvm/scummvm/commit/53248ecd2f7929595c87fdfab474d9fdf4f41a2a
Author: Matthias Mailänder (matthias at mailaender.name)
Date: 2016-07-29T21:56:27+02:00
Commit Message:
DISTS: Add an appdata.xml file.
Changed paths:
A dists/scummvm.appdata.xml
diff --git a/dists/scummvm.appdata.xml b/dists/scummvm.appdata.xml
new file mode 100644
index 0000000..e9185cd
--- /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 at lists.sourceforge.net</updatecontact>
+</component>
Commit: 67c101a4a2494813f25b86a8843eef15b7f34b20
https://github.com/scummvm/scummvm/commit/67c101a4a2494813f25b86a8843eef15b7f34b20
Author: Matthias Mailänder (matthias at mailaender.name)
Date: 2016-07-29T22:05:00+02:00
Commit Message:
BUILD: Install the .desktop file.
Changed paths:
ports.mk
diff --git a/ports.mk b/ports.mk
index dce5a5d..c4d1fd3 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
Commit: 1912c55682a09e35f239fe5c06dd283eabaedde6
https://github.com/scummvm/scummvm/commit/1912c55682a09e35f239fe5c06dd283eabaedde6
Author: Matthias Mailänder (matthias at mailaender.name)
Date: 2016-07-29T22:05:20+02:00
Commit Message:
BUILD: Install the appdata.xml file.
Changed paths:
ports.mk
diff --git a/ports.mk b/ports.mk
index c4d1fd3..b2a34cb 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
Commit: 70dc846b952eaf1ffdb67c8820d156a61df2f7df
https://github.com/scummvm/scummvm/commit/70dc846b952eaf1ffdb67c8820d156a61df2f7df
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2016-08-02T00:04:49+03:00
Commit Message:
Merge pull request #797 from Mailaender/appdata
DISTS: Added an appdata.xml file
Changed paths:
A dists/scummvm.appdata.xml
ports.mk
More information about the Scummvm-git-logs
mailing list