33 lines
1.2 KiB
Bash
33 lines
1.2 KiB
Bash
# Template file for 'streamlink'
|
|
pkgname=streamlink
|
|
version=0.14.2
|
|
revision=1
|
|
noarch=yes
|
|
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=a8c7f9a758ade056a35d439f78408e9e43ce1069dde9289d322702d35c214150
|
|
|
|
export STREAMLINK_USE_PYCOUNTRY=1
|
|
|
|
do_check() {
|
|
# in python3 mock is unittest.mock
|
|
sed -i 's| mock| unittest.mock|g' tests/test_stream_streamprocess.py tests/test_hls.py
|
|
|
|
PYTHONPATH="${PWD}/build/lib" python3 -m pytest
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|