Skip to content

Commit

Permalink
Merge pull request #318 from Freso/add-metainfo-xml-file
Browse files Browse the repository at this point in the history
Add AppStream metainfo.xml file
  • Loading branch information
JoeLametta authored Oct 29, 2018
2 parents 996cfd7 + 540703e commit 833cdb5
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 1 deletion.
33 changes: 33 additions & 0 deletions com.github.whipper_team.Whipper.metainfo.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright 2018 Frederik “Freso” S. Olesen -->
<component type="console-application">
<id>com.github.whipper_team.Whipper</id>
<metadata_license>CC0-1.0</metadata_license>

<name>whipper</name>
<project_license>GPL-3.0-or-later</project_license>
<developer_name>The Whipper Team</developer_name>
<summary>A CD-DA ripper prioritising accuracy over speed</summary>
<description>
<p>
whipper is a command-line CD-DA ripper that focuses on making accurate
rips over fast ones.
</p>
</description>

<url type="homepage">https://github.com/whipper-team/whipper</url>
<url type="bugtracker">https://github.com/whipper-team/whipper/issues</url>
<url type="help">https://github.com/whipper-team/whipper/blob/master/README.md</url>

<categories>
<category>AudioVideo</category>
<category>Audio</category>
<category>Music</category>
<category>ConsoleOnly</category>
</categories>

<provides>
<binary>whipper</binary>
<python2>whipper</python2>
</provides>
</component>
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,8 @@
'console_scripts': [
'whipper = whipper.command.main:main'
]
}
},
data_files=[
('share/metainfo', ['com.github.whipper_team.Whipper.metainfo.xml']),
],
)

0 comments on commit 833cdb5

Please sign in to comment.