diff options
Diffstat (limited to 'extra/zsh/PKGBUILD')
-rw-r--r-- | extra/zsh/PKGBUILD | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/extra/zsh/PKGBUILD b/extra/zsh/PKGBUILD index 5853c1f57..e58444200 100644 --- a/extra/zsh/PKGBUILD +++ b/extra/zsh/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 149982 2012-02-11 23:31:46Z allan $ +# $Id: PKGBUILD 150666 2012-02-19 20:58:33Z pierre $ # Maintainer: Pierre Schmitz <pierre@archlinux.de> pkgname=zsh -pkgver=4.3.15 -pkgrel=3 +pkgver=4.3.16 +pkgrel=1 pkgdesc='A very advanced and programmable command interpreter (shell) for UNIX' arch=('i686' 'x86_64') url='http://www.zsh.org/' @@ -11,15 +11,13 @@ license=('custom') depends=('pcre' 'libcap' 'gdbm') install=zsh.install source=("ftp://ftp.zsh.org/pub/${pkgname}-${pkgver}.tar.bz2" - 'zprofile' 'svn-1.7.patch') + 'zprofile') backup=('etc/zsh/zprofile') -md5sums=('11766b0dd674a513810903cd33ffcac4' - '24a9335edf77252a7b5f52e079f7aef7' - '4fcbc119fdb624a8c483a278f3a82efd') +md5sums=('4bf0b8947b5acc0ac4334d75adc87239' + '24a9335edf77252a7b5f52e079f7aef7') build() { cd "${srcdir}/${pkgname}-${pkgver}" - patch -p1 -i "${srcdir}/svn-1.7.patch" # FS#16360 sed -i 's/init.d/rc.d/g' Doc/Zsh/compsys.yo \ Doc/zsh.texi \ @@ -48,8 +46,6 @@ build() { check() { cd "${srcdir}/${pkgname}-${pkgver}" - # This test wont work with the noatime mount option - rm Test/C02cond.ztst HOME="${srcdir}" make check } |