# Maintainer: Josip Ponjavic pkgname=streamlink-git pkgver=0.3.1.r0.g2c34781 pkgrel=1 pkgdesc='CLI program that launches streams from various streaming services in a custom video player (livestreamer fork)' arch=('any') url='https://streamlink.github.io/' license=('BSD') depends=("python-"{iso3166,iso639,pycryptodome,requests} 'rtmpdump') checkdepends=("python-"{mock,pytest}) makedepends=('git' "python-"{setuptools,sphinx}) optdepends=('ffmpeg: Required to play streams that are made up of separate audio and video streams, eg. YouTube 1080p+' 'python-librtmp: Required by the ustreamtv plugin to be able to use non-mobile streams.') provides=('streamlink') conflicts=('streamlink') source=('git+https://github.com/streamlink/streamlink.git') sha512sums=('SKIP') pkgver() { cd streamlink git describe --long --tags | sed -r 's/([^-]*-g)/r\1/;s/-/./g' } build() { cd streamlink python setup.py build_sphinx -b man } check() { cd streamlink python setup.py test || warning "Tests failed" } package() { cd streamlink python setup.py install --root="$pkgdir" --optimize=1 install -Dm644 build/sphinx/man/streamlink.1 \ "$pkgdir/usr/share/man/man1/streamlink.1" install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" }