void-packages/srcpkgs/youtube-dl/template
maxice8 dfc2445af3 youtube-dl: update to 2018.05.26.
Closes #14734.

Signed-off-by: Enno Boland <gottox@voidlinux.eu>
2018-05-28 09:53:46 +02:00

37 lines
1.2 KiB
Bash

# Template file for 'youtube-dl'
pkgname=youtube-dl
version=2018.05.26
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=ddd3f5134c6cc601f0bb422a366cfe35f7cf4b368ea868b5ca5bfd697f053bad
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*
}
}