summaryrefslogtreecommitdiffstats
path: root/main/zsh
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2011-01-03 14:24:36 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2011-01-03 14:55:23 +0000
commit96efa8a9db7dc8a5117b334faaf93f9dc8f77224 (patch)
treeb06687b677881e205f1b128cf8817d2a8a8a995e /main/zsh
parent0344b8067393c6d7fe0311ace3454ad4e71f2c1e (diff)
downloadaports-96efa8a9db7dc8a5117b334faaf93f9dc8f77224.tar.bz2
aports-96efa8a9db7dc8a5117b334faaf93f9dc8f77224.tar.xz
testing/zsh: moved from main
Diffstat (limited to 'main/zsh')
-rw-r--r--main/zsh/APKBUILD43
-rw-r--r--main/zsh/zsh.post-install3
-rw-r--r--main/zsh/zsh.post-upgrade3
-rw-r--r--main/zsh/zsh.pre-deinstall3
4 files changed, 0 insertions, 52 deletions
diff --git a/main/zsh/APKBUILD b/main/zsh/APKBUILD
deleted file mode 100644
index 413b12245..000000000
--- a/main/zsh/APKBUILD
+++ /dev/null
@@ -1,43 +0,0 @@
-# Contributor: <kalonji@gmail.com>
-# Maintainer: <kalonji@gmail.com>
-pkgname=zsh
-pkgver=4.3.11
-pkgrel=1
-pkgdesc="A very advanced and programmable command interpreter (shell) for UNIX"
-url="http://www.zsh.org/"
-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 \
- --mandir=/usr/share/man \
- --infodir=/usr/share/info
- make || return 1
-}
-
-package() {
- cd "$_builddir"
- make DESTDIR="$pkgdir" install
-}
-
-md5sums="127e2a3b9100d6f2fddb6a32cd4aca40 zsh-4.3.11.tar.gz
-aedff0460ef282937905223207ac702e zsh.post-install
-aedff0460ef282937905223207ac702e zsh.post-upgrade
-b48f79e2d4a29047f6152f5a9441f942 zsh.pre-deinstall"
diff --git a/main/zsh/zsh.post-install b/main/zsh/zsh.post-install
deleted file mode 100644
index 46506fbee..000000000
--- a/main/zsh/zsh.post-install
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-grep -q '/bin/zsh' /etc/shells || echo '/bin/zsh' >> /etc/shells
-exit 0
diff --git a/main/zsh/zsh.post-upgrade b/main/zsh/zsh.post-upgrade
deleted file mode 100644
index 46506fbee..000000000
--- a/main/zsh/zsh.post-upgrade
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-grep -q '/bin/zsh' /etc/shells || echo '/bin/zsh' >> /etc/shells
-exit 0
diff --git a/main/zsh/zsh.pre-deinstall b/main/zsh/zsh.pre-deinstall
deleted file mode 100644
index bd078e838..000000000
--- a/main/zsh/zsh.pre-deinstall
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-sed -i '/^\/bin\/zsh/d' /etc/shells
-exit 0