mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-11 14:26:38 +02:00
43 lines
1.1 KiB
Text
43 lines
1.1 KiB
Text
# Contributor: Fabricio Silva <hi@fabricio.dev>
|
|
# Maintainer: Fabricio Silva <hi@fabricio.dev>
|
|
pkgname=py3-plexapi
|
|
pkgver=4.16.1
|
|
pkgrel=0
|
|
pkgdesc="Python bindings for the Plex API"
|
|
url="https://github.com/pkkid/python-plexapi"
|
|
arch="noarch"
|
|
license="BSD-3-Clause"
|
|
# tests requires an instance of plex running
|
|
# net for sphinx
|
|
options="net !check"
|
|
depends="
|
|
python3
|
|
py3-requests
|
|
"
|
|
makedepends="
|
|
py3-gpep517
|
|
py3-recommonmark
|
|
py3-setuptools
|
|
py3-sphinx_rtd_theme
|
|
py3-wheel
|
|
"
|
|
subpackages="$pkgname-doc $pkgname-pyc"
|
|
source="https://github.com/pkkid/python-plexapi/archive/$pkgver/py3-plexapi-$pkgver.tar.gz"
|
|
builddir="$srcdir/python-plexapi-$pkgver"
|
|
|
|
build() {
|
|
gpep517 build-wheel \
|
|
--wheel-dir .dist \
|
|
--output-fd 3 3>&1 >&2
|
|
sphinx-build -W -b man docs man
|
|
}
|
|
|
|
package() {
|
|
python3 -m installer -d "$pkgdir" \
|
|
.dist/*.whl
|
|
install -Dm644 man/pythonplexapi.1 -t "$pkgdir"/usr/share/man/man1
|
|
}
|
|
|
|
sha512sums="
|
|
719a2c6942d4e7b0a4aedbba05fe83ec7e4070db90e6bdb7331698c7c3ae621f96539aa89b548bc57dbb7eaf97a562b7a015746f86609ddbed09ccd5569f8ede py3-plexapi-4.16.1.tar.gz
|
|
"
|