From 43f3fbe818b45e5a377300e6f2b4a72f16081dc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Frederik=20=E2=80=9CFreso=E2=80=9D=20S=2E=20Olesen?= Date: Sun, 28 Oct 2018 02:57:55 +0200 Subject: [PATCH] Add initial AppStream metainfo.xml file AppStream metainfo.xml files are used to provide "metadata necessary for an application-centric view on package repositories." This is an initial and somewhat basic one written from scratch for whipper. See https://www.freedesktop.org/wiki/Distributions/AppStream/ and https://www.freedesktop.org/software/appstream/docs/ --- com.github.whipper_team.Whipper.metainfo.xml | 32 ++++++++++++++++++++ setup.py | 5 ++- 2 files changed, 36 insertions(+), 1 deletion(-) create mode 100644 com.github.whipper_team.Whipper.metainfo.xml diff --git a/com.github.whipper_team.Whipper.metainfo.xml b/com.github.whipper_team.Whipper.metainfo.xml new file mode 100644 index 0000000..568e228 --- /dev/null +++ b/com.github.whipper_team.Whipper.metainfo.xml @@ -0,0 +1,32 @@ + + + + com.github.whipper_team.Whipper + CC0-1.0 + + whipper + GPL-3.0-or-later + A CD-DA ripper prioritising accuracy over speed + +

+ whipper is a command-line CD-DA ripper that focuses on making accurate + rips over fast ones. +

+
+ + https://github.com/whipper-team/whipper + https://github.com/whipper-team/whipper/issues + https://github.com/whipper-team/whipper/blob/master/README.md + + + AudioVideo + Audio + Music + ConsoleOnly + + + + whipper + whipper + +
diff --git a/setup.py b/setup.py index 9262a8d..3ea6a12 100644 --- a/setup.py +++ b/setup.py @@ -14,5 +14,8 @@ setup( 'console_scripts': [ 'whipper = whipper.command.main:main' ] - } + }, + data_files=[ + ('share/metainfo', ['com.github.whipper_team.Whipper.metainfo.xml']), + ], )