16 lines
597 B
Plaintext
16 lines
597 B
Plaintext
# Description: A CLI utility that pipes videos from online streaming services to a variety of video players.
|
|
# URL: https://pypi.python.org/pypi/streamlink/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: python3-iso-639 python3-iso3166 python3-pycryptodome python3-requests python3-websocket-client python3-pysocks
|
|
|
|
name=streamlink
|
|
version=0.10.0
|
|
release=1
|
|
source=(https://files.pythonhosted.org/packages/source/${name:0:1}/$name/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
/usr/bin/python3 setup.py build
|
|
/usr/bin/python3 setup.py install --root=$PKG --optimize=1
|
|
}
|