summaryrefslogtreecommitdiff
path: root/jellyfin-media-player/debian/control
diff options
context:
space:
mode:
Diffstat (limited to 'jellyfin-media-player/debian/control')
-rw-r--r--jellyfin-media-player/debian/control57
1 files changed, 57 insertions, 0 deletions
diff --git a/jellyfin-media-player/debian/control b/jellyfin-media-player/debian/control
new file mode 100644
index 0000000..1948886
--- /dev/null
+++ b/jellyfin-media-player/debian/control
@@ -0,0 +1,57 @@
+Source: jellyfin-media-player
+Section: video
+Priority: optional
+Maintainer: B. Stack <bgstack15@gmail.com>
+XSBC-Original-Maintainer: Ian Walton <ian@iwalton.com>, Joshua Boniface <joshua@boniface.me>
+Build-Depends: debhelper (>= 12),
+ autoconf,
+ automake,
+ libtool,
+ libharfbuzz-dev,
+ libfreetype-dev | libfreetype6-dev,
+ libfontconfig-dev | libfontconfig1-dev,
+ libx11-dev,
+ libxrandr-dev,
+ libvdpau-dev,
+ libva-dev,
+ mesa-common-dev,
+ libegl1-mesa-dev,
+ yasm,
+ libasound2-dev,
+ libpulse-dev,
+ libuchardet-dev,
+ zlib1g-dev,
+ libfribidi-dev,
+ git,
+ libgnutls28-dev,
+ libgl-dev | libgl1-mesa-dev,
+ libsdl2-dev,
+ cmake,
+ wget,
+ python3,
+ g++,
+ qtwebengine5-dev,
+ qtquickcontrols2-5-dev,
+ libqt5x11extras5-dev,
+ libcec-dev,
+ libmpv-dev,
+ wget,
+ unzip,
+ qtbase5-private-dev
+Standards-Version: 3.9.4
+Homepage: https://jellyfin.org/
+Vcs-Git: https://github.org/jellyfin/jellyfin-media-player.git
+Vcs-Browser: https://github.org/jellyfin/jellyfin-media-player
+
+Package: jellyfin-media-player
+Architecture: any
+Depends: libmpv1 | libmpv2,
+ libqt5webengine5,
+ libcec4 | libcec6,
+ qml-module-qtwebengine,
+ qml-module-qtwebchannel,
+ qml-module-qtquick-controls,
+ libqt5x11extras5,
+ libqt5xml5
+Description: Jellyfin is the Free Software Media System.
+ This package provides the Jellyfin desktop media player.
bgstack15