updated on Mon Jan 23 20:11:11 UTC 2012
[aur-mirror.git] / zsh-completions / PKGBUILD
blobf6992778f3ea37f51ce470ba7d4b2c2d362bd003
1 # Maintainer: Julien Nicoulaud <julien.nicoulaud@gmail.com>
2 # Source: https://github.com/nicoulaj/archlinux-packages
3 pkgname=zsh-completions
4 pkgver=0.3
5 pkgrel=1
6 pkgdesc="Additional completion definitions for Zsh."
7 arch=(any)
8 url="https://github.com/zsh-users/zsh-completions"
9 license=(unknown)
10 depends=(zsh)
11 changelog=Changelog
12 provides=(zsh-virtualbox zsh-packagekit zsh-yaourt)
13 conflicts=(${pkgname}-git zsh-virtualbox zsh-packagekit zsh-yaourt)
14 source=("${pkgname}-${pkgver}.tar.gz::https://github.com/zsh-users/${pkgname}/tarball/${pkgver}")
15 md5sums=('01e49421f9a4d750b1ec1f50cf48e435')
17 package() {
18   cd "${srcdir}"/zsh-users-${pkgname}-*/
19   install -m0755 -d "${pkgdir}/usr/share/zsh/site-functions"
20   install -m0644 _* "${pkgdir}/usr/share/zsh/site-functions"
23 # vim:set ts=2 sw=2 et: