blob: f0e00d88678255e6c7017b51b0a61232d52c4f85 (
plain)
1 # Description: A CLI utility that pipes videos from online streaming services to a variety of video players.
2 # URL: https://pypi.python.org/pypi/streamlink/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: python3-iso-639 python3-iso3166 python3-isodate python3-pycountry python3-pycryptodome python3-pysocks python3-requests python3-versioningit python3-websocket-client
5
6 name=streamlink
7 version=5.0.1
8 release=1
9 source=(https://files.pythonhosted.org/packages/source/${name:0:1}/$name/$name-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13
14 /usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
15 /usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
16
17 install -d $PKG/etc/ssl/certs/
18 }
|