7d8133cef7
Oops
This reverts commit 2806293897
.
38 lines
1.2 KiB
Bash
38 lines
1.2 KiB
Bash
# Template file for 'youtube-dl'
|
|
pkgname=youtube-dl
|
|
version=2016.08.13
|
|
revision=1
|
|
noarch=yes
|
|
build_style=python-module
|
|
wrksrc="${pkgname}"
|
|
hostmakedepends="python python3.4"
|
|
depends="python"
|
|
python_versions="2.7 3.4"
|
|
pycompile_module="youtube_dl"
|
|
short_desc="CLI program to download videos from YouTube and other sites (Python2)"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
homepage="http://rg3.github.com/youtube-dl/"
|
|
license="Public Domain"
|
|
distfiles="https://yt-dl.org/downloads/${version}/${pkgname}-${version}.tar.gz"
|
|
checksum=b68b00744f5578c3225d1231d4001a39c79b5912a68de2da1c39c648e36dfeba
|
|
alternatives="youtube-dl:youtube-dl:/usr/bin/youtube-dl2.7"
|
|
|
|
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}
|
|
}
|
|
|
|
python3.4-youtube-dl_package() {
|
|
noarch=yes
|
|
depends="python3.4"
|
|
pycompile_version="3.4"
|
|
pycompile_module="youtube_dl"
|
|
alternatives="youtube-dl:youtube-dl:/usr/bin/youtube-dl3.4"
|
|
short_desc="${short_desc/2/3.4}"
|
|
pkg_install() {
|
|
vmove usr/bin/youtube-dl3.4
|
|
vmove usr/lib/python3.4
|
|
}
|
|
}
|