summaryrefslogtreecommitdiffstats
path: root/zsh/Pkgfile.old
diff options
context:
space:
mode:
authorLukc <lukc@upyum.com>2010-12-19 15:57:49 +0100
committerLukc <lukc@upyum.com>2010-12-19 15:57:49 +0100
commit432ec0174d51734ccfd8e614ccaf8435cdf9fa17 (patch)
treec26c2e213b3b33ab1dd5422470885141705eaae7 /zsh/Pkgfile.old
parent40a209622a48332cc2de9b15dbc13ad33ec5202e (diff)
downloadbase-432ec0174d51734ccfd8e614ccaf8435cdf9fa17.tar.gz
base-432ec0174d51734ccfd8e614ccaf8435cdf9fa17.tar.bz2
base-432ec0174d51734ccfd8e614ccaf8435cdf9fa17.tar.xz
base-432ec0174d51734ccfd8e614ccaf8435cdf9fa17.zip
Recette de zsh ajoutée. o/
Diffstat (limited to 'zsh/Pkgfile.old')
-rw-r--r--zsh/Pkgfile.old40
1 files changed, 40 insertions, 0 deletions
diff --git a/zsh/Pkgfile.old b/zsh/Pkgfile.old
new file mode 100644
index 0000000..c114fa0
--- /dev/null
+++ b/zsh/Pkgfile.old
@@ -0,0 +1,40 @@
+# Description: Very powerfull shell
+# URL: http://www.zsh.org/
+# Maintainer: Tilman Sauerbeck, tilman at crux dot nu
+# Depends on: libpcre
+
+name=zsh
+version=4.3.10
+release=2
+source=(http://www.zsh.org/pub/$name-$version.tar.bz2 \
+ zsh-lovers.1)
+
+build() {
+ cd $name-$version
+
+ ./configure \
+ --prefix=/usr \
+ --mandir=/usr/man \
+ --enable-etcdir=/etc/zsh \
+ --enable-zshrc=/etc/zsh/zshrc \
+ --enable-zshlogin=/etc/zsh/zshlogin \
+ --enable-zshenv=/etc/zsh/zshenv \
+ --enable-fndir=/usr/share/zsh/$version/functions \
+ --enable-site-fndir=/usr/share/zsh/site-functions \
+ --enable-zsh-mem \
+ --enable-maildir-support \
+ --enable-function-subdirs \
+ --enable-pcre \
+ --enable-restricted-r \
+ --enable-lfs \
+ --enable-cap \
+ --with-curses-terminfo
+ make
+ make DESTDIR=$PKG install
+
+ install -m 644 $SRC/zsh-lovers.1 $PKG/usr/man/man1/
+
+ # These completion files break things for CRUX' pkgutils,
+ # so remove them for now (see bug #381).
+ rm $PKG/usr/share/zsh/$version/functions/Completion/Unix/_pkg{add,rm,info}
+}