Initial version

This commit is contained in:
Marius Lindvall
2020-04-01 16:51:30 +02:00
commit f58d49f0c1
2 changed files with 41 additions and 0 deletions

18
.SRCINFO Normal file
View File

@@ -0,0 +1,18 @@
pkgbase = python-jellyfin-apiclient
pkgdesc = Python API client for Jellyfin
pkgver = 1.5.0
pkgrel = 1
url = https://github.com/iwalton3/jellyfin-apiclient-python
arch = any
license = GPL3
makedepends = python-setuptools
depends = python>=3.6
depends = python-requests
depends = python-urllib3
depends = python-websocket-client
depends = python-six
source = https://pypi.python.org/packages/source/j/jellyfin-apiclient-python/jellyfin-apiclient-python-1.5.0.tar.gz
sha256sums = e71080f44e601e31d1f439ef3f4281286f98e98f650f324df8446d14b5b7e170
pkgname = python-jellyfin-apiclient

23
PKGBUILD Normal file
View File

@@ -0,0 +1,23 @@
# Maintainer: Marius Lindvall <(firstname) {cat} varden {dog} info>
pkgname=python-jellyfin-apiclient
pkgver='1.5.0'
pkgrel=1
pkgdesc="Python API client for Jellyfin"
arch=('any')
url='https://github.com/iwalton3/jellyfin-apiclient-python'
license=('GPL3')
depends=('python>=3.6' 'python-requests' 'python-urllib3' 'python-websocket-client' 'python-six')
makedepends=('python-setuptools')
source=("https://pypi.python.org/packages/source/j/jellyfin-apiclient-python/jellyfin-apiclient-python-$pkgver.tar.gz")
sha256sums=('e71080f44e601e31d1f439ef3f4281286f98e98f650f324df8446d14b5b7e170')
build() {
cd "${srcdir}/jellyfin-apiclient-python-${pkgver}"
python setup.py build
}
package() {
cd "${srcdir}/jellyfin-apiclient-python-${pkgver}"
python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
}