37 lines
1.2 KiB
Bash
37 lines
1.2 KiB
Bash
# Template file for 'youtube-dl'
|
|
pkgname=youtube-dl
|
|
version=2018.08.04
|
|
revision=1
|
|
noarch=yes
|
|
wrksrc="$pkgname"
|
|
build_style=python-module
|
|
pycompile_module="youtube_dl"
|
|
hostmakedepends="python python3"
|
|
depends="python"
|
|
short_desc="CLI program to download videos from YouTube and other sites (Python2)"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="Public Domain"
|
|
homepage="http://rg3.github.io/youtube-dl/"
|
|
changelog="https://raw.githubusercontent.com/rg3/youtube-dl/master/ChangeLog"
|
|
distfiles="https://yt-dl.org/downloads/${version}/${pkgname}-${version}.tar.gz"
|
|
checksum=f582dc699e88699f0f9db9ba9188c1d072a10c630b319426622ffab5704a9dc1
|
|
alternatives="youtube-dl:youtube-dl:/usr/bin/youtube-dl2"
|
|
|
|
post_install() {
|
|
rm -rf ${DESTDIR}/usr/etc
|
|
vinstall ${pkgname}.bash-completion 644 usr/share/bash-completion/completions ${pkgname}
|
|
vinstall ${pkgname}.zsh 644 usr/share/zsh/site-functions _${pkgname}
|
|
vinstall ${pkgname}.fish 644 usr/share/fish/completions ${pkgname}.fish
|
|
}
|
|
|
|
python3-youtube-dl_package() {
|
|
noarch=yes
|
|
depends="python3"
|
|
pycompile_module="youtube_dl"
|
|
alternatives="youtube-dl:youtube-dl:/usr/bin/youtube-dl3"
|
|
short_desc="${short_desc/2/3}"
|
|
pkg_install() {
|
|
vmove usr/bin/youtube-dl3
|
|
vmove usr/lib/python3*
|
|
}
|
|
}
|