2014-04-09 18:51:00 +10:00
|
|
|
# Description: A command-line program to download videos from YouTube.com and a few more sites.
|
2020-11-01 18:01:20 +11:00
|
|
|
# URL: https://youtube-dl.org/
|
2014-11-10 23:28:07 +11:00
|
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
2020-01-05 12:15:46 +11:00
|
|
|
# Depends on: python3-setuptools
|
2014-04-09 18:51:00 +10:00
|
|
|
|
|
|
|
name=youtube-dl
|
2021-06-12 22:50:04 +10:00
|
|
|
version=2021.06.06
|
2014-04-09 18:51:00 +10:00
|
|
|
release=1
|
2020-11-01 18:01:20 +11:00
|
|
|
source=(https://youtube-dl.org/downloads/$version/$name-$version.tar.gz)
|
2014-04-09 18:51:00 +10:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name
|
2021-02-06 14:21:47 +11:00
|
|
|
|
|
|
|
export PYTHONHASHSEED=0
|
|
|
|
sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
|
|
|
|
sed -i 's|etc/fish/completions|share/fish/vendor_completions.d|' setup.py
|
|
|
|
|
2020-01-04 22:31:05 +11:00
|
|
|
/usr/bin/python3 setup.py build
|
2021-02-06 14:21:47 +11:00
|
|
|
/usr/bin/python3 setup.py install --root=$PKG --optimize=1 --skip-build
|
|
|
|
|
|
|
|
/usr/bin/python3 -mcompileall $PKG
|
|
|
|
/usr/bin/python3 -O -m compileall $PKG
|
|
|
|
/usr/bin/python3 -OO -m compileall $PKG
|
2017-12-26 20:55:17 +11:00
|
|
|
|
2016-02-16 21:50:41 +11:00
|
|
|
rm -r $PKG/usr/share/doc
|
2014-04-09 18:51:00 +10:00
|
|
|
}
|