mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
28 lines
802 B
Plaintext
28 lines
802 B
Plaintext
DESCRIPTION="Zsh is a shell designed for interactive use, although it is also a powerful scripting language."
|
|
HOMEPAGE="http://www.zsh.org"
|
|
SRC_URI="http://sourceforge.net/projects/zsh/files/zsh/5.0.0/zsh-5.0.0.tar.bz2/download"
|
|
REVISION="1"
|
|
CHECKSUM_MD5="e8484468925cec8d9a84b8b04797e764"
|
|
STATUS_HAIKU="unstable"
|
|
DEPEND=""
|
|
BUILD()
|
|
{
|
|
cd zsh-5.0.0
|
|
autoconf
|
|
COMMON_DOCS=`finddir B_COMMON_DOCUMENTATION_DIRECTORY`
|
|
./configure --prefix=`finddir B_COMMON_DIRECTORY` \
|
|
--datadir=`finddir B_COMMON_DATA_DIRECTORY` \
|
|
--mandir=$COMMON_DOCS/man \
|
|
--infodir=$COMMON_DOCS/info \
|
|
LIBS="-lgnu"
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
cd zsh-5.0.0
|
|
make install
|
|
}
|
|
LICENSE="ZSH"
|
|
COPYRIGHT="(c) 1992-2009 Paul Falstad, Richard Coleman, Zoltán Hidvégi, Andrew Main, Peter Stephenson, Sven Wishnowsky, and others."
|