mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-06 09:11:38 +01:00
46 lines
1.2 KiB
Plaintext
46 lines
1.2 KiB
Plaintext
# Contributor: <kalonji@gmail.com>
|
|
# Maintainer: <ncopa@alpinelinux.org>
|
|
pkgname=zsh
|
|
pkgver=4.3.12
|
|
pkgrel=0
|
|
pkgdesc="A very advanced and programmable command interpreter (shell) for UNIX"
|
|
url="http://www.zsh.org/"
|
|
arch="all"
|
|
license="custom"
|
|
depends=
|
|
makedepends=ncurses-dev
|
|
install="zsh.post-install zsh.post-upgrade zsh.pre-deinstall"
|
|
source="ftp://ftp.zsh.org/pub/${pkgname}-${pkgver}.tar.gz
|
|
$install"
|
|
_builddir="$srcdir"/$pkgname-$pkgver
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure --prefix=/usr \
|
|
--bindir=/bin \
|
|
--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-multibyte \
|
|
--enable-function-subdirs \
|
|
--enable-zsh-secure-free \
|
|
--sysconfdir=/etc \
|
|
--with-tcsetpgrp \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
md5sums="46ae7be975779b9b0ea24e8b30479a8b zsh-4.3.12.tar.gz
|
|
aedff0460ef282937905223207ac702e zsh.post-install
|
|
aedff0460ef282937905223207ac702e zsh.post-upgrade
|
|
b48f79e2d4a29047f6152f5a9441f942 zsh.pre-deinstall"
|