blob: 1c599630b2283beba96cbb9b00d73e7d6d6f9041 (
plain)
1 # Description: A command-line program to download videos from YouTube.com and a few more sites.
2 # URL: https://rg3.github.io/youtube-dl/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: python
5 # Optional: python-setuptools
6
7 name=youtube-dl
8 version=2018.04.09
9 release=1
10 source=(https://youtube-dl.org/downloads/$version/$name-$version.tar.gz)
11
12 build() {
13 cd $name
14 /usr/bin/python setup.py build
15 /usr/bin/python setup.py install --root=$PKG --optimize=1
16
17 rm -r $PKG/usr/share/doc
18
19 find $PKG/usr/lib/python*/site-packages/ -maxdepth 1 -type f \
20 -name "youtube_dl-$version-py*.egg-info" -delete
21
22 }
|