summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 1da55af63784297bf63d056dafee0277c4dee4d1 (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
# Maintainer  : flu
# Contributor : Frederic Bezies <fredbezies at gmail dot com>
# Contributor : baskerville <nihilhill at gmail dot com>
# Contributor : Smola

_name=youtube-dl
_branch=master

pkgname=$_name-git
pkgver=2015.12.05.0bc4ee6
pkgrel=1

pkgdesc='A small command-line program to download videos from YouTube.com and a few more sites - git version'
url="http://rg3.github.io/youtube-dl"
arch=('any')
license=('custom')

depends=('python' 'python-setuptools')
makedepends=('git')
optdepends=('ffmpeg: for video post-processing')

provides=("$_name")
conflicts=("$_name")

source=("https://github.com/rg3/$_name/archive/$_branch.zip")
sha512sums=(SKIP)

pkgver() { 
  DATE=$(date +%Y.%m.%d)
  HASH=$(git ls-remote -h https://github.com/rg3/$_name $_branch | cut -c1-7)
  echo $DATE.$HASH
}

prepare() {
  cd $_name-$_branch
  sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
  sed -i ':etc/fish/completions:d' setup.py
}

package() {
 cd $_name-$_branch

 python devscripts/bash-completion.py
 python setup.py install --root="$pkgdir" --optimize=1

 mv "$pkgdir"/usr/share/bash-completion/completions/youtube-dl.bash-completion \
    "$pkgdir"/usr/share/bash-completion/completions/youtube-dl
 install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/"$pkgname"/LICENSE
}