Skip to content

Instantly share code, notes, and snippets.

@izilly
Created January 7, 2016 15:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save izilly/8612d77b8cec79c4cbce to your computer and use it in GitHub Desktop.
Save izilly/8612d77b8cec79c4cbce to your computer and use it in GitHub Desktop.
youtube-dl-git.PKGBUILD
# 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=2016.01.07.2e02ecb
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")
pkgver() {
DATE=$(date +%Y.%m.%d)
HASH=$(git ls-remote -h https://github.com/rg3/$_name $_branch | cut -c1-7)
echo $DATE.$HASH
}
source=("$pkgname-$(pkgver).zip::https://github.com/rg3/$_name/archive/$_branch.zip")
sha512sums=(SKIP)
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
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment