Add an AppData file (#709164)
For more information on AppData see: AppData Specification http://people.freedesktop.org/~hughsient/appdata/ Application metadata with AppData http://lwn.net/Articles/569034/ Bug #709164 - Please include an AppData file
This commit is contained in:
parent
00409ef51b
commit
640f92790b
|
@ -25,6 +25,7 @@ config.*
|
||||||
configure
|
configure
|
||||||
depcomp
|
depcomp
|
||||||
gparted
|
gparted
|
||||||
|
gparted.appdata.xml
|
||||||
gparted.desktop
|
gparted.desktop
|
||||||
gparted.desktop.in
|
gparted.desktop.in
|
||||||
gpartedbin
|
gpartedbin
|
||||||
|
|
13
Makefile.am
13
Makefile.am
|
@ -6,14 +6,18 @@ SUBDIRS = help compose data doc include po src
|
||||||
endif
|
endif
|
||||||
|
|
||||||
@INTLTOOL_DESKTOP_RULE@
|
@INTLTOOL_DESKTOP_RULE@
|
||||||
|
|
||||||
DESKTOP_IN_IN_FILES = gparted.desktop.in.in
|
DESKTOP_IN_IN_FILES = gparted.desktop.in.in
|
||||||
DESKTOP_IN_FILES = gparted.desktop.in
|
DESKTOP_IN_FILES = gparted.desktop.in
|
||||||
DESKTOP_FILES =$(DESKTOP_IN_FILES:.desktop.in=.desktop)
|
DESKTOP_FILES =$(DESKTOP_IN_FILES:.desktop.in=.desktop)
|
||||||
|
|
||||||
desktopdir = $(datadir)/applications
|
desktopdir = $(datadir)/applications
|
||||||
desktop_DATA = $(DESKTOP_FILES)
|
desktop_DATA = $(DESKTOP_FILES)
|
||||||
|
|
||||||
|
@INTLTOOL_XML_RULE@
|
||||||
|
APPDATA_IN_FILES = gparted.appdata.xml.in
|
||||||
|
APPDATA_FILES =$(APPDATA_IN_FILES:.xml.in=.xml)
|
||||||
|
appdatadir = $(datadir)/appdata
|
||||||
|
appdata_DATA = $(APPDATA_FILES)
|
||||||
|
|
||||||
sbin_SCRIPTS = gparted
|
sbin_SCRIPTS = gparted
|
||||||
CLEANFILES = $(sbin_SCRIPTS) $(DESKTOP_IN_FILES)
|
CLEANFILES = $(sbin_SCRIPTS) $(DESKTOP_IN_FILES)
|
||||||
|
|
||||||
|
@ -51,6 +55,8 @@ dist-hook:
|
||||||
fi
|
fi
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
|
$(APPDATA_IN_FILES) \
|
||||||
|
$(APPDATA_FILES) \
|
||||||
$(DESKTOP_IN_IN_FILES) \
|
$(DESKTOP_IN_IN_FILES) \
|
||||||
$(DESKTOP_FILES) \
|
$(DESKTOP_FILES) \
|
||||||
intltool-extract.in \
|
intltool-extract.in \
|
||||||
|
@ -60,10 +66,11 @@ EXTRA_DIST = \
|
||||||
gnome-doc-utils.make
|
gnome-doc-utils.make
|
||||||
|
|
||||||
DISTCLEANFILES = \
|
DISTCLEANFILES = \
|
||||||
|
$(appdata_DATA) \
|
||||||
|
$(desktop_DATA) \
|
||||||
intltool-extract \
|
intltool-extract \
|
||||||
intltool-merge \
|
intltool-merge \
|
||||||
intltool-update \
|
intltool-update \
|
||||||
$(desktop_DATA) \
|
|
||||||
gnome-doc-utils.make
|
gnome-doc-utils.make
|
||||||
|
|
||||||
DISTCHECK_CONFIGURE_FLAGS = \
|
DISTCHECK_CONFIGURE_FLAGS = \
|
||||||
|
|
|
@ -0,0 +1,29 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!-- Copyright 2013 Curtis Gedak <gedakc@users.sf.net> -->
|
||||||
|
<application>
|
||||||
|
<id type="desktop">gparted.desktop</id>
|
||||||
|
<licence>GFDL</licence>
|
||||||
|
<description>
|
||||||
|
<p>
|
||||||
|
GParted is a free partition editor for graphically managing your
|
||||||
|
disk partitions.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
With GParted you can resize, copy, label, and move partitions
|
||||||
|
without data loss. These actions enable you to grow or shrink
|
||||||
|
your C: drive, create space for new operating systems, or attempt
|
||||||
|
data rescue from lost partitions.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
GParted works with many file systems including: btrfs, ext2, ext3,
|
||||||
|
ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, nilfs2, ntfs,
|
||||||
|
reiserfs, reiser4, ufs, and xfs.
|
||||||
|
</p>
|
||||||
|
</description>
|
||||||
|
<url type="homepage">http://gparted.org</url>
|
||||||
|
<screenshots>
|
||||||
|
<screenshot type="default">http://gparted.org/appdata/gparted-main-window.png</screenshot>
|
||||||
|
</screenshots>
|
||||||
|
<updatecontact>gedakc@users.sf.net</updatecontact>
|
||||||
|
<project_group>GNOME</project_group>
|
||||||
|
</application>
|
|
@ -1,5 +1,6 @@
|
||||||
# List of source files containing translatable strings.
|
# List of source files containing translatable strings.
|
||||||
# Please keep this file sorted alphabetically.
|
# Please keep this file sorted alphabetically.
|
||||||
|
gparted.appdata.xml.in
|
||||||
gparted.desktop.in.in
|
gparted.desktop.in.in
|
||||||
include/Utils.h
|
include/Utils.h
|
||||||
src/Copy_Blocks.cc
|
src/Copy_Blocks.cc
|
||||||
|
|
Loading…
Reference in New Issue