diff options
author | John Stebbins <[email protected]> | 2016-08-30 09:51:05 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2016-08-30 09:51:05 -0700 |
commit | a464833a790f44f061f9de42a88f64e49156d422 (patch) | |
tree | 4ae1aeeb0d1e98640efe55c5f9db94a329f0de9f /gtk/src/fr.handbrake.ghb.appdata.xml | |
parent | aed230d055ce0e64dfc0a41e401a7a3e7e7fd7bb (diff) |
LinGui: Add flatpak support (#231)
* LinGui: add --flatpak configure option
For building a linux flatpak bundle
* LinGui: add rules to build flatpak repo and bundles
* LinGui: add flatpak compatible icon
* LinGui: add flatpak compatible desktop file
* LinGui: add flatpak appdata xml
* pkg: disable building LinGui when creating cli flatpak
* pkg: clean flatpak build cache when updating source package
* pkg: fix source package build dependencies
Fixes errors when the git ref being packaged changes and you have not
manually deleted stage and pkg build directories.
Diffstat (limited to 'gtk/src/fr.handbrake.ghb.appdata.xml')
-rw-r--r-- | gtk/src/fr.handbrake.ghb.appdata.xml | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/gtk/src/fr.handbrake.ghb.appdata.xml b/gtk/src/fr.handbrake.ghb.appdata.xml new file mode 100644 index 000000000..3c18d648e --- /dev/null +++ b/gtk/src/fr.handbrake.ghb.appdata.xml @@ -0,0 +1,79 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Copyright 2013 John Stebbins <[email protected]> --> +<component type="desktop"> + <id>fr.handbrake.ghb.desktop</id> + <metadata_license>CC0</metadata_license> + <project_license>GPL-2.0+</project_license> + <name>HandBrake</name> + <summary>Video Transcoder</summary> + + <description> + <p> + HandBrake is a tool for converting video from nearly any format to a + selection of modern, widely supported codecs. + </p> + <p>Reasons you'll love Handbrake:</p> + <ul> + <li>Convert video from nearly any format</li> + <li>Free and Open Source</li> + <li>Multi-Platform (Windows, Mac and Linux)</li> + </ul> + </description> + + <url type="homepage">https://handbrake.fr/</url> + <url type="help">https://handbrake.fr/docs/en/latest/table-of-contents.html</url> + <url type="bugtracker">https://github.com/HandBrake/HandBrake/issues</url> + <mimetypes> + <mimetype>application/ogg</mimetype> + <mimetype>application/x-extension-mp4</mimetype> + <mimetype>application/x-flac</mimetype> + <mimetype>application/x-matroska</mimetype> + <mimetype>application/x-ogg</mimetype> + <mimetype>audio/ac3</mimetype> + <mimetype>audio/mp4</mimetype> + <mimetype>audio/mpeg</mimetype> + <mimetype>audio/ogg</mimetype> + <mimetype>audio/x-flac</mimetype> + <mimetype>audio/x-matroska</mimetype> + <mimetype>audio/x-mp3</mimetype> + <mimetype>audio/x-mpeg</mimetype> + <mimetype>audio/x-vorbis</mimetype> + <mimetype>video/mp4</mimetype> + <mimetype>video/mp4v-es</mimetype> + <mimetype>video/mpeg</mimetype> + <mimetype>video/msvideo</mimetype> + <mimetype>video/quicktime</mimetype> + <mimetype>video/vnd.divx</mimetype> + <mimetype>video/x-avi</mimetype> + <mimetype>video/x-m4v</mimetype> + <mimetype>video/x-matroska</mimetype> + <mimetype>video/x-mpeg</mimetype> + <mimetype>video/ogg</mimetype> + <mimetype>video/x-ogm+ogg</mimetype> + <mimetype>video/x-theora+ogg</mimetype> + <mimetype>x-content/video-dvd</mimetype> + <mimetype>x-content/video-vcd</mimetype> + <mimetype>x-content/video-svcd</mimetype> + </mimetypes> + + <screenshots> + <screenshot type="default"> + <image>https://handbrake.fr/img/slides/slide1_lin.jpg</image> + <caption>Main window and settings summary</caption> + </screenshot> + <screenshot> + <image>https://handbrake.fr/img/slides/slide2_lin.jpg</image> + <caption>Video encoder settings</caption> + </screenshot> + <screenshot> + <image>https://handbrake.fr/img/slides/slide3_lin.jpg</image> + <caption>Audio track selection and settings</caption> + </screenshot> + </screenshots> + + <provides> + <binary>ghb</binary> + </provides> + +</component> + |