summaryrefslogtreecommitdiff
path: root/jellyfin-apiclient-python/debian/control
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2023-06-22 12:00:06 -0400
committerB. Stack <bgstack15@gmail.com>2023-06-22 12:00:06 -0400
commitbd605b70c2bde46c315b80dd2141bdc49298046d (patch)
treefcd6b189cf99a75612516439185109d45522c135 /jellyfin-apiclient-python/debian/control
parentjellyfin-media-player 1.9.1 attempt 1 (diff)
downloadstackrpms-bd605b70c2bde46c315b80dd2141bdc49298046d.tar.gz
stackrpms-bd605b70c2bde46c315b80dd2141bdc49298046d.tar.bz2
stackrpms-bd605b70c2bde46c315b80dd2141bdc49298046d.zip
add jellyfin mpv-shim and apiclient-python
Diffstat (limited to 'jellyfin-apiclient-python/debian/control')
-rw-r--r--jellyfin-apiclient-python/debian/control20
1 files changed, 20 insertions, 0 deletions
diff --git a/jellyfin-apiclient-python/debian/control b/jellyfin-apiclient-python/debian/control
new file mode 100644
index 0000000..38c7bd8
--- /dev/null
+++ b/jellyfin-apiclient-python/debian/control
@@ -0,0 +1,20 @@
+Source: jellyfin-apiclient-python
+Section: video
+Priority: optional
+Maintainer: B. Stack <bgstack15@gmail.com>
+Build-Depends: debhelper-compat (= 13),
+ dh-python,
+ python3-all-dev
+Standards-Version: 4.5.1
+Homepage: https://github.com/jellyfin/jellyfin-apiclient-python
+Rules-Requires-Root: no
+
+Package: jellyfin-apiclient-python
+Architecture: any
+Multi-Arch: foreign
+Depends: ${misc:Depends}, ${shlibs:Depends}
+Description: python API client for Jellyfin
+ API client from Jellyfin Kodi extracted as a python
+ package so that other users may use the API without
+ maintaining a fork of the API client. See also
+ pip install jellyfin-apiclient-python
bgstack15