diff options
author | Jesús Eduardo <heckyel@parabola.nu> | 2017-08-19 02:46:29 +0000 |
---|---|---|
committer | Jesús Eduardo <heckyel@parabola.nu> | 2017-08-19 02:46:29 +0000 |
commit | b8db59c9d7654d9e46a524eec7918033d79c0e75 (patch) | |
tree | 1688196ddee6e677e61a9ffb625da627ff8469d6 | |
parent | 292caf192326121dc565bd7a2182a6351ad2b799 (diff) | |
download | abslibre-b8db59c9d7654d9e46a524eec7918033d79c0e75.tar.gz abslibre-b8db59c9d7654d9e46a524eec7918033d79c0e75.tar.bz2 abslibre-b8db59c9d7654d9e46a524eec7918033d79c0e75.zip |
Add package avideo
-rw-r--r-- | pcr/avideo/PKGBUILD | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/pcr/avideo/PKGBUILD b/pcr/avideo/PKGBUILD new file mode 100644 index 000000000..682094f67 --- /dev/null +++ b/pcr/avideo/PKGBUILD @@ -0,0 +1,35 @@ +# Maintainer(Hyperbola): André Silva <emulatorman@hyperbola.info> +# Contributor(Hyperbola): Márcio Silva <coadde@hyperbola.info> + +pkgname=avideo +pkgver=2017.7.145 +pkgrel=2 +pkgdesc="A small command-line program to download videos from YouTube.com and a few more sites (a libre fork of youtube-dl)" +arch=('any') +url="https://notabug.org/GPast/avideo" +license=('GPL3') +replaces=('youtube-dl' 'avideo') +conflicts=('youtube-dl' 'avideo') +provides=('youtube-dl' 'avideo') +depends=('python' 'python-setuptools') +optdepends=('ffmpeg: for video post-processing' + 'rtmpdump: for rtmp streams support' + 'atomicparsley: for embedding thumbnails into m4a files') +source=(https://notabug.org/GPast/${pkgname}/raw/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz) +sha512sums=('67733ce3c7e412431108ceb777c566c2da7f61f22385a040426d7e15200dbe5db43a1ba76624ee69ea843cb644942d3304b8741bc0db0bc8e95c3b2164577998') + +prepare() { + cd ${pkgname} + sed -i 's|etc/bash_completion.d|share/bash-completion/completions|' setup.py + sed -i 's|etc/fish/completions|share/fish/completions|' setup.py +} + +package() { + cd ${pkgname} + python setup.py install --root="${pkgdir}/" --optimize=1 + mv "${pkgdir}/usr/share/bash-completion/completions/avideo.bash-completion" \ + "${pkgdir}/usr/share/bash-completion/completions/avideo" + install -Dm644 avideo.zsh "${pkgdir}/usr/share/zsh/site-functions/_avideo" + install -Dm644 COPYING.txt "${pkgdir}/usr/share/licenses/${pkgname}/COPYING" + ln -sv avideo "${pkgdir}/usr/bin/youtube-dl" +} |