forked from ports/contrib
27 lines
785 B
Plaintext
27 lines
785 B
Plaintext
# Description: A command-line program to download videos from YouTube.com and a few more sites.
|
|
# URL: https://youtube-dl.org/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: python3-setuptools
|
|
|
|
name=youtube-dl
|
|
version=2021.06.06
|
|
release=1
|
|
source=(https://youtube-dl.org/downloads/$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name
|
|
|
|
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
|
|
|
|
/usr/bin/python3 setup.py build
|
|
/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
|
|
|
|
rm -r $PKG/usr/share/doc
|
|
}
|