summaryrefslogtreecommitdiff
path: root/extra/zsh/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'extra/zsh/PKGBUILD')
-rw-r--r--extra/zsh/PKGBUILD19
1 files changed, 10 insertions, 9 deletions
diff --git a/extra/zsh/PKGBUILD b/extra/zsh/PKGBUILD
index 95eed637b..d11a75e9f 100644
--- a/extra/zsh/PKGBUILD
+++ b/extra/zsh/PKGBUILD
@@ -1,23 +1,23 @@
-# $Id: PKGBUILD 143828 2011-11-29 13:33:59Z stephane $
+# $Id: PKGBUILD 144599 2011-12-07 15:40:43Z pierre $
# Maintainer: Pierre Schmitz <pierre@archlinux.de>
pkgname=zsh
-pkgver=4.3.12
-pkgrel=3
+pkgver=4.3.14
+pkgrel=2
pkgdesc='A very advanced and programmable command interpreter (shell) for UNIX'
arch=('i686' 'x86_64' 'mips64el')
url='http://www.zsh.org/'
license=('custom')
depends=('pcre' 'libcap' 'gdbm')
install=zsh.install
-source=("ftp://ftp.zsh.org/pub/${pkgname}-${pkgver}.tar.bz2" 'modules.patch')
-md5sums=('7a82c0bf0635e046ca4e9ec1bdef3811'
- 'b367c1398b60242f7044a93a837227f9')
+source=("ftp://ftp.zsh.org/pub/${pkgname}-${pkgver}.tar.bz2"
+ 'zprofile')
+backup=('etc/zsh/zprofile')
+md5sums=('1c819a3ff7302b42eba988e333e76109'
+ '24a9335edf77252a7b5f52e079f7aef7')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
- # upstream patch to fix handling of compressed kernel modules
- patch -p1 -i ${srcdir}/modules.patch
# FS#16360
sed -i 's/init.d/rc.d/g' Doc/Zsh/compsys.yo \
Doc/zsh.texi \
@@ -29,7 +29,7 @@ build() {
--enable-zshenv=/etc/zsh/zshenv \
--enable-zlogin=/etc/zsh/zlogin \
--enable-zlogout=/etc/zsh/zlogout \
- --enable-zprofile=/etc/profile \
+ --enable-zprofile=/etc/zsh/zprofile \
--enable-zshrc=/etc/zsh/zshrc \
--enable-maildir-support \
--with-term-lib='ncursesw' \
@@ -54,5 +54,6 @@ check() {
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}/" install
+ install -D -m644 "${srcdir}/zprofile" "${pkgdir}/etc/zsh/zprofile"
install -D -m644 LICENCE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}