summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Ivtsan <alonivtsan@lavabit.com>2013-07-16 02:25:13 +0300
committerAlon Ivtsan <alonivtsan@lavabit.com>2013-07-16 02:25:13 +0300
commitd384ab7781a27c2796b4591d40d7ac1918d04882 (patch)
tree7b76900f170e09dc239e7055813939c34027be16
parentefe5775fac5f64ff66adf39838f84f4a4a26be0c (diff)
Adding youtube-dl-current PKGBUILD
-rw-r--r--pcr/youtube-dl-current/PKGBUILD31
1 files changed, 31 insertions, 0 deletions
diff --git a/pcr/youtube-dl-current/PKGBUILD b/pcr/youtube-dl-current/PKGBUILD
new file mode 100644
index 000000000..bb79e9cc4
--- /dev/null
+++ b/pcr/youtube-dl-current/PKGBUILD
@@ -0,0 +1,31 @@
+# Maintainer (Arch): Eric BĂ©langer <eric@archlinux.org>
+# Maintainer (Parabola): Alon Ivtsan <alonivtsan@lavabit.com>
+# Based on https://www.archlinux.org/packages/community/any/youtube-dl/
+
+pkgname=youtube-dl-current
+_pkgname=youtube-dl
+provides=(youtube-dl)
+pkgver=2013.07.12
+pkgrel=1
+pkgdesc="A small command-line program to download videos from YouTube.com and a few more sites"
+arch=('any')
+url="http://rg3.github.io/youtube-dl/"
+license=('custom')
+depends=('python')
+makedepends=('python-distribute')
+source=(http://youtube-dl.org/downloads/${pkgver}/${_pkgname}-${pkgver}.tar.gz{,.sig})
+md5sums=('5549a8be5054eaf02470da8955b838a0'
+ 'SKIP')
+
+prepare() {
+ cd ${_pkgname}
+ sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py
+}
+
+package() {
+ cd ${_pkgname}
+ 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 -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${_pkgname}/LICENSE"
+}