diff options
author | Lukc <lukc@upyum.com> | 2011-01-23 15:42:24 +0000 |
---|---|---|
committer | Lukc <lukc@upyum.com> | 2011-01-23 15:43:12 +0000 |
commit | 42f9e15cf7a21599d8ad8a4ee0d3e3e6d7141739 (patch) | |
tree | f8c92adf0c359c2a459d9a2dd66c1bad92ff523a /zsh/Pkgfile | |
parent | c322c3e0b4383307c6bcc8dc4639851021899f72 (diff) | |
download | base-42f9e15cf7a21599d8ad8a4ee0d3e3e6d7141739.tar.gz base-42f9e15cf7a21599d8ad8a4ee0d3e3e6d7141739.tar.bz2 base-42f9e15cf7a21599d8ad8a4ee0d3e3e6d7141739.tar.xz base-42f9e15cf7a21599d8ad8a4ee0d3e3e6d7141739.zip |
Diffstat (limited to 'zsh/Pkgfile')
-rw-r--r-- | zsh/Pkgfile | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/zsh/Pkgfile b/zsh/Pkgfile index 187d33a..cb65528 100644 --- a/zsh/Pkgfile +++ b/zsh/Pkgfile @@ -1,18 +1,23 @@ description="Very powerfull shell, the Z SHell." +longdesc="Zsh is a shell designed for interactive use, although it is also a +powerful scripting language. Many of the useful features of bash, ksh, +and tcsh were incorporated into zsh; many original features were added." packager="Tilman Sauerbeck <tilman AT crux DOT nu>" maintainer="Lukc <lukc AT upyum DOT com>" url="http://www.zsh.org" depends=(libpcre) name=zsh -version=4.3.10 +version=4.3.11 release=2 +license=zlib +lastver="wcat http://www.zsh.org/pub/ | grep zsh | grep \\\.tar\\\.bz2 | sed 's/.*zsh-//;s/\.tar\.bz2.*//' | tail -n 1" source=( http://www.zsh.org/pub/$name-$version.tar.bz2 zsh-lovers.1 ) -build () -{ + +build () { cd $name-$version; ./configure \ ${CBUILD:+--build=${CBUILD}} \ @@ -40,3 +45,9 @@ build () install -m 644 $SRC/zsh-lovers.1 $PKG$mandir/man1/; rm $PKG$sharedir/zsh/$version/functions/Completion/Unix/_pkg{add,rm,info} } + +check () { + cd $name-$version + make check +} + |