Was supposed to be a linux distribution, now just a collection of build scripts for packages on top of (ideally) any distribution.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
783 B

import 'compile/python'
name=youtube-dl
version=2018.07.21
dlextract "https://yt-dl.org/downloads/$version/$name-$version.tar.gz" \
'982b98b48766dbec973a634c36584e4f'
_
cd "$name"
# Disable the installation of the bash completion
sed -i -e '/bash-completion/d' setup.py
# Fix paths
sed -i -e "s/etc\/fish\/completions/$(safe_sed "$dir_data/fish/completions")/" \
-e "s/share\/doc/$(safe_sed "$dir_doc")/" \
-e "s/share\/man/$(safe_sed "$dir_man")/" setup.py
compile_python 3
# Install completions
install -Dm644 "$name.bash-completion" "$dir_install/$dir_prefix/$dir_data/bash-completion/completions/$name"
install -Dm644 "$name.zsh" "$dir_install/$dir_prefix/$dir_data/zsh/site-functions/_$name"
# vim:set tabstop=4 shiftwidth=4 syntax=sh expandtab: