23 lines
617 B
Plaintext
Raw Normal View History

2014-04-09 18:51:00 +10:00
# Description: A command-line program to download videos from YouTube.com and a few more sites.
2017-01-31 20:03:05 +11:00
# URL: https://rg3.github.io/youtube-dl/
2014-11-10 23:28:07 +11:00
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: python
# Optional: python-setuptools
2014-04-09 18:51:00 +10:00
name=youtube-dl
2018-07-22 16:03:55 +10:00
version=2018.07.21
2014-04-09 18:51:00 +10:00
release=1
2017-01-31 20:03:05 +11:00
source=(https://youtube-dl.org/downloads/$version/$name-$version.tar.gz)
2014-04-09 18:51:00 +10:00
build() {
cd $name
2017-01-31 20:03:05 +11:00
/usr/bin/python setup.py build
/usr/bin/python setup.py install --root=$PKG --optimize=1
2017-12-26 20:55:17 +11:00
2016-02-16 21:50:41 +11:00
rm -r $PKG/usr/share/doc
2017-12-26 20:55:17 +11:00
find $PKG/usr/lib/python*/site-packages/ -maxdepth 1 -type f \
-name "youtube_dl-$version-py*.egg-info" -delete
2014-04-09 18:51:00 +10:00
}