aboutsummaryrefslogtreecommitdiffstats
path: root/community/youtube-dl/APKBUILD
blob: 94d44feeffc4f0004007bd144d568363e5985f43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# Contributor: Peter Bui <pnutzh4x0r@gmail.com>
# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net>
# Contributor: Łukasz Jendrysik <scadu@yandex.com>
# Contributor: Timo Teräs <timo.teras@iki.fi>
# Maintainer: Timo Teräs <timo.teras@iki.fi>
pkgname=youtube-dl
pkgver=2016.10.12
pkgrel=0
pkgdesc="A small command-line program to download videos from YouTube."
url="http://youtube-dl.org "
arch="noarch"
license="Unlicense"
depends="python2 py-setuptools ffmpeg"
subpackages="
	$pkgname-doc
	$pkgname-zsh-completion:zshcomp
	$pkgname-bash-completion:bashcomp
	$pkgname-fish-completion:fishcomp"
source="http://$pkgname.org/downloads/$pkgver/$pkgname-$pkgver.tar.gz"
builddir="$srcdir/$pkgname"

prepare() {
	cd "$builddir"
	sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py || return 1
	sed -i 's|etc/fish/completions|share/fish/completions|' setup.py || return 1
}

package() {
	cd "$builddir"
	python2 setup.py install --root="$pkgdir/" --optimize=1 || return 1
	install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" || return 1
}

zshcomp() {
	pkgdesc="Zsh completions for $pkgname"
	arch="noarch"
	depends=""
	install_if="$pkgname=$pkgver-r$pkgrel zsh"

	install -Dm644 "$builddir"/$pkgname.zsh \
		"$subpkgdir"/usr/share/zsh/site-functions/_$pkgname || return 1
}

bashcomp() {
	pkgdesc="Bash completions for $pkgname"
	arch="noarch"
	depends=""
	install_if="$pkgname=$pkgver-r$pkgrel bash-completion"

	mkdir -p "$subpkgdir"/usr/share/bash-completion/completions/
	mv "$pkgdir"/usr/share/bash-completion/completions/$pkgname.bash-completion \
		"$subpkgdir"/usr/share/bash-completion/completions/$pkgname || return 1
}

fishcomp() {
	pkgdesc="Fish completions for $pkgname"
	arch="noarch"
	depends=""
	install_if="$pkgname=$pkgver-r$pkgrel fish"

	mkdir -p "$subpkgdir"/usr/share/fish/completions/
	mv "$pkgdir"/usr/share/fish/completions/$pkgname.fish \
		"$subpkgdir"/usr/share/fish/completions/ || return 1
}

md5sums="861884fb22aa0c4d029040c897a3ec25  youtube-dl-2016.10.12.tar.gz"
sha256sums="3e96d144c5abe8016bc771eebbc687947c3332b3f06247d3cfcca1231041bde9  youtube-dl-2016.10.12.tar.gz"
sha512sums="bd671aa58784ebe057177b23131664d73ee6cd6a9993359c9689569afb6d0499d598ce95569c70028721d9b8d326698e2934e56bcbb503e1f22919510b3cff68  youtube-dl-2016.10.12.tar.gz"