Skip to content

Commit 692f439

Browse files
authored
Merge pull request #7283 from aleixpol/appstream
Include AppStream metadata
2 parents 981c668 + db398ab commit 692f439

File tree

3 files changed

+31
-0
lines changed

3 files changed

+31
-0
lines changed

CMakeLists.txt

+4
Original file line numberDiff line numberDiff line change
@@ -906,3 +906,7 @@ IF (WITH_CORE)
906906
SET(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_SOURCE_DIR}/README.md")
907907
INCLUDE(CPack)
908908
ENDIF (WITH_CORE)
909+
910+
IF (CMAKE_SYSTEM_NAME STREQUAL "Linux")
911+
ADD_SUBDIRECTORY(linux)
912+
ENDIF (CMAKE_SYSTEM_NAME STREQUAL "Linux")

linux/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
install(FILES org.qgis.qgis.appdata.xml DESTINATION share/metainfo)

linux/org.qgis.qgis.appdata.xml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<component type="desktop">
3+
<id>org.qgis.qgis.desktop</id>
4+
<name>QGIS Desktop</name>
5+
<summary>Create, edit, visualise, analyse and publish geospatial information</summary>
6+
<description>
7+
<p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo).</p>
8+
<p>It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p>
9+
</description>
10+
<metadata_license>MIT</metadata_license>
11+
<project_license>GPL-2.0+</project_license>
12+
<url type="bugtracker">https://issues.qgis.org/projects/qgis/issues/</url>
13+
<url type="donation">https://qgis.org/en/site/getinvolved/donations.html</url>
14+
<url type="faq">https://qgis.org/en/site/getinvolved/faq/index.html</url>
15+
<url type="help">https://qgis.org/en/docs/index.html</url>
16+
<url type="homepage">https://qgis.org</url>
17+
18+
<project_group>QGIS</project_group>
19+
<releases>
20+
<release version="3.0" />
21+
</releases>
22+
<launchable type="desktop-id">qgis.desktop</launchable>
23+
<provides>
24+
<binary>qgis</binary>
25+
</provides>
26+
</component>

0 commit comments

Comments
 (0)