Skip to content

Commit c39e46c

Browse files
davidgumbergShadowNinja
authored andcommittedJun 13, 2014
Add AppData file
1 parent c78aa7c commit c39e46c

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed
 

‎CMakeLists.txt

+2
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ elseif(UNIX) # Linux, BSD etc
9696
set(MANDIR "${CMAKE_INSTALL_PREFIX}/share/man")
9797
set(EXAMPLE_CONF_DIR ${DOCDIR})
9898
set(XDG_APPS_DIR "${CMAKE_INSTALL_PREFIX}/share/applications")
99+
set(APPDATADIR "${CMAKE_INSTALL_PREFIX}/share/appdata")
99100
set(ICONDIR "${CMAKE_INSTALL_PREFIX}/share/icons")
100101
set(LOCALEDIR "${CMAKE_INSTALL_PREFIX}/share/${PROJECT_NAME}/locale")
101102
endif()
@@ -172,6 +173,7 @@ install(FILES "minetest.conf.example" DESTINATION "${EXAMPLE_CONF_DIR}")
172173
if(UNIX)
173174
install(FILES "doc/minetest.6" "doc/minetestserver.6" DESTINATION "${MANDIR}/man6")
174175
install(FILES "misc/minetest.desktop" DESTINATION "${XDG_APPS_DIR}")
176+
install(FILES "misc/minetest.appdata.xml" DESTINATION "${APPDATADIR}")
175177
install(FILES "misc/minetest-icon.svg" DESTINATION "${ICONDIR}/hicolor/scalable/apps")
176178
endif()
177179

‎misc/minetest.appdata.xml

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<application>
3+
<id type="desktop">minetest.desktop</id>
4+
<metadata_license>CC0-1.0</metadata_license>
5+
<project_license>LGPL-2.1+ and CC-BY-SA-3.0 and MIT and Apache-2.0</project_license>
6+
<name>Minetest</name>
7+
<summary>Multiplayer infinite-world block sandbox game</summary>
8+
<description>
9+
<p>
10+
Minetest is an infinite-world block sandbox game and game engine.
11+
</p><p>
12+
Players can create and destroy various types of blocks in a
13+
three-dimensional open world. This allows forming structures in
14+
every possible creation, on multiplayer servers or in singleplayer.
15+
</p><p>
16+
Minetest is designed to be simple, stable, and portable.
17+
It is lightweight enough to run on fairly old hardware.
18+
</p><p>
19+
Minetest has many features, including:
20+
</p>
21+
<ul>
22+
<li>Ability to walk around, dig, and build in a near-infinite voxel world</li>
23+
<li>Crafting of items from raw materials</li>
24+
<li>Fast and able to run on old and slow hardware</li>
25+
<li>A simple modding API that supports many additions and modifications to the game</li>
26+
<li>Multiplayer support via servers hosted by users</li>
27+
<li>Beautiful lightning-fast map generator</li>
28+
</ul>
29+
</description>
30+
<screenshots>
31+
<screenshot type="default" width="1440" height="851">http://minetest.net/_media/screen2.png</screenshot>
32+
<screenshot width="1440" height="851">http://minetest.net/_media/screenshot_4032289578.png</screenshot>
33+
</screenshots>
34+
<url type="homepage">http://minetest.net</url>
35+
<updatecontact>sfan5@live.de</updatecontact>
36+
</application>

0 commit comments

Comments
 (0)
Please sign in to comment.