feat: add basic support for AppStream

This commit is contained in:
Gary Wang 2020-09-14 18:34:30 +08:00
parent e2fb1813f1
commit 16ccec0d12
2 changed files with 25 additions and 0 deletions

View File

@ -152,6 +152,12 @@ elseif (UNIX)
FILES pineapple-pictures.desktop FILES pineapple-pictures.desktop
DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/applications" DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/applications"
) )
# install app metadata file for appstream (and some other stuff using this metadata like snapcraft)
install (
FILES dist/appstream/net.blumia.pineapple-pictures.appdata.xml
DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/metainfo"
)
endif() endif()
set (INSTALL_TARGETS_DEFAULT_ARGS set (INSTALL_TARGETS_DEFAULT_ARGS

View File

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<component type="desktop-application">
<id>net.blumia.pineapple-pictures</id>
<metadata_license>CC0-1.0</metadata_license>
<project_license>GPL-3.0+</project_license>
<name>Pineapple Pictures</name>
<name xml:lang="zh-CN">菠萝看图</name>
<summary>图像查看器</summary>
<description>
<p>Pineapple Pictures is a lightweight image viewer</p>
<p xml:lang="zh-CN">菠萝看图是一个轻量级的图像查看器</p>
</description>
<url type="homepage">https://github.com/BLumia/pineapple-pictures</url>
<url type="bugtracker">https://github.com/BLumia/pineapple-pictures/issues</url>
<url type="donation">https://www.kde.org/community/donations/?app=$YOURBINARYNAME</url>
<provides>
<binary>ppic</binary>
</provides>
</component>