diff options
Diffstat (limited to 'data')
-rw-r--r-- | data/Makefile.am | 7 | ||||
-rw-r--r-- | data/caja.appdata.xml.in | 41 |
2 files changed, 48 insertions, 0 deletions
diff --git a/data/Makefile.am b/data/Makefile.am index 000d45bb..2d79e780 100644 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -35,6 +35,11 @@ cajadata_DATA = \ caja-suggested.placeholder \ $(NULL) +# app data file +appdatadir = $(datadir)/appdata +appdata_in_files = caja.appdata.xml.in +appdata_DATA = $(appdata_in_files:.xml.in=.xml) + EXTRA_DIST = $(cajadata_DATA) \ caja.desktop \ caja.desktop.in \ @@ -42,11 +47,13 @@ EXTRA_DIST = $(cajadata_DATA) \ $(xml_in_files) \ $(desktop_in_files) \ $(service_in_files) \ + $(appdata_in_files) \ $(NULL) CLEANFILES = $(xml_files) \ $(desktop_DATA) \ $(service_DATA) \ + caja.appdata.xml \ $(NULL) SUBDIRS = \ diff --git a/data/caja.appdata.xml.in b/data/caja.appdata.xml.in new file mode 100644 index 00000000..27a83975 --- /dev/null +++ b/data/caja.appdata.xml.in @@ -0,0 +1,41 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright 2014 MATE team <[email protected]> --> +<component type="desktop"> + <id>caja.desktop</id> + <metadata_license>CC0-1.0</metadata_license> + <project_license>GPL-2.0+</project_license> + <name>Caja</name> + <_summary>File manager for the MATE desktop environment</_summary> + <_description> + <p> + Caja is the official file manager for the MATE desktop. It allows for + browsing directories, as well as previewing files and launching applications + associated with them. It is also responsible for handling the icons on + the MATE desktop. It works on local and remote file systems. + </p> + <p> + Caja is extensible through a plugin system, similar to that of GNOME Nautilus, + of which Caja is a fork. + </p> + </_description> + <screenshots> + <screenshot type="default"> + <image width="960" height="540"> + https://alexpl.fedorapeople.org/AppData/caja/screens/caja_01.png + </image> + </screenshot> + <screenshot> + <image width="960" height="540"> + https://alexpl.fedorapeople.org/AppData/caja/screens/caja_02.png + </image> + </screenshot> + <screenshot> + <image width="960" height="540"> + https://alexpl.fedorapeople.org/AppData/caja/screens/caja_03.png + </image> + </screenshot> + </screenshots> + <url type="homepage">http://www.mate-desktop.org</url> + <updatecontact>[email protected]</updatecontact> + <project_group>MATE</project_group> +</component> |