blob: cf64c68794ec203826e7be8589d81fba77c9534a (
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-pycryptodome python3-pysocks python3-requests python3-websocket-client
5
6 name=streamlink
7 version=1.3.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 /usr/bin/python3 setup.py build
14 /usr/bin/python3 setup.py install --root=$PKG --optimize=1
15
16 install -d $PKG/etc/ssl/certs/
17 }
|