void-packages/srcpkgs/streamlink/template
2019-12-24 12:24:48 +01:00

32 lines
1.2 KiB
Bash

# Template file for 'streamlink'
pkgname=streamlink
version=1.3.0
revision=2
archs=noarch
build_style=python3-module
pycompile_module="streamlink streamlink_cli"
hostmakedepends="python3-setuptools"
depends="python3-setuptools python3-pycryptodome python3-pycountry
python3-pysocks python3-requests python3-websocket-client python3-isodate"
checkdepends="python3-pycryptodome python3-pycountry python3-pysocks
python3-pytest python3-requests-mock python3-websocket-client python3-isodate"
short_desc="Utility extracting streams from services, forked from livestreamer"
maintainer="wkuipers <wietse@kuiprs.nl>"
license="BSD-2-Clause"
homepage="https://streamlink.github.io/"
changelog="https://raw.githubusercontent.com/streamlink/streamlink/master/CHANGELOG.md"
distfiles="https://github.com/streamlink/streamlink/releases/download/${version}/streamlink-${version}.tar.gz"
checksum=00649658b74c76022a04564919431e4d6156d974caf56f25cd52a07fa5732315
export STREAMLINK_USE_PYCOUNTRY=1
do_check() {
# in python3 mock is unittest.mock
sed -i 's| mock| unittest.mock|g' tests/streams/test_stream_streamprocess.py tests/streams/test_hls.py
PYTHONPATH="${PWD}/build/lib" python3 -m pytest
}
post_install() {
vlicense LICENSE
}