desktop/zsh/PKGBUILD

63 lines
1.7 KiB
Bash
Raw Normal View History

2010-08-06 06:34:25 +08:00
#
# Chakra Packages for Chakra, part of chakra-project.org
#
2012-07-24 00:35:12 +08:00
# Maintainer: Fabian Kosmale <0inkane@googlemail.com>
2014-01-08 08:20:20 +08:00
# Contributor: Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
2010-08-06 06:34:25 +08:00
pkgname=zsh
2014-12-16 23:06:47 +08:00
pkgver=5.0.7
2011-01-24 10:18:48 +08:00
pkgrel=1
2010-08-06 06:34:25 +08:00
pkgdesc='A very advanced and programmable command interpreter (shell) for UNIX'
2014-01-08 08:20:20 +08:00
arch=('x86_64')
2010-08-06 06:34:25 +08:00
url='http://www.zsh.org/'
license=('custom')
depends=('pcre' 'libcap' 'gdbm')
categories=('system')
2010-08-06 06:34:25 +08:00
install=zsh.install
2014-12-16 23:06:47 +08:00
source=("http://www.zsh.org/pub/${pkgname}-${pkgver}.tar.gz"
2013-02-03 04:55:29 +08:00
"zprofile")
2014-12-16 23:06:47 +08:00
md5sums=('76726ff50309e628de670476e0508b3a'
2013-02-03 04:55:29 +08:00
'24a9335edf77252a7b5f52e079f7aef7')
2010-08-06 06:34:25 +08:00
build() {
2014-12-16 23:06:47 +08:00
cd "$srcdir/$pkgname-$pkgver"
2010-08-06 06:34:25 +08:00
sed -i 's/init.d/rc.d/g' Doc/Zsh/compsys.yo \
Doc/zsh.texi \
Completion/Unix/Type/_services \
Completion/Unix/Command/_init_d
2013-02-03 04:55:29 +08:00
# Set correct keymap path
sed -i 's#/usr/share/keymaps#/usr/share/kbd/keymaps#g' Completion/Unix/Command/_loadkeys
2010-08-06 06:34:25 +08:00
./configure --prefix=/usr \
--enable-etcdir=/etc/zsh \
--enable-zshenv=/etc/zsh/zshenv \
--enable-zlogin=/etc/zsh/zlogin \
--enable-zlogout=/etc/zsh/zlogout \
--enable-zprofile=/etc/profile \
--enable-zshrc=/etc/zsh/zshrc \
--enable-maildir-support \
--with-term-lib='ncursesw' \
--enable-multibyte \
--enable-function-subdirs \
--enable-fndir=/usr/share/zsh/functions \
--enable-scriptdir=/usr/share/zsh/scripts \
2010-08-06 06:34:25 +08:00
--with-tcsetpgrp \
--enable-pcre \
--enable-cap \
--enable-zsh-secure-free
2010-08-06 06:34:25 +08:00
make
}
check() {
2014-12-16 23:06:47 +08:00
cd "$srcdir/$pkgname-$pkgver"
HOME="$srcdir" make check
}
2010-08-06 06:34:25 +08:00
package() {
2014-12-16 23:06:47 +08:00
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"
2010-08-06 06:34:25 +08:00
}