milis/talimatname/genel/z/zsh/talimat

31 lines
861 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Tanım: UNIX icin programlanabilir bir komut arayuzu (shell)
# URL: http://www.zsh.org
# Paketçi: milisarge
# Gerekler: pcre
name=zsh
version=5.3.1
release=1
source=(http://www.zsh.org/pub/$name-$version.tar.xz)
derle(){
cd $name-$version
./configure --prefix=/usr \
--bindir=/bin \
--sysconfdir=/etc/zsh \
--enable-etcdir=/etc/zsh
make
makeinfo Doc/zsh.texi --html -o Doc/html
makeinfo Doc/zsh.texi --html --no-split --no-headers -o Doc/zsh.html
makeinfo Doc/zsh.texi --plaintext -o Doc/zsh.txt
make DESTDIR=$PKG install
make infodir=$PKG/usr/share/info install.info
install -v -dm755 $PKG/usr/share/doc/zsh-$version/html
install -v -m644 Doc/html/* $PKG/usr/share/doc/zsh-$version/html
install -v -m644 Doc/zsh.{html,txt} $PKG/usr/share/doc/zsh-$version
}