milis/talimatname/genel/z/zsh/talimat

31 lines
847 B
Plaintext
Raw Normal View History

2017-10-27 20:46:27 +02:00
# Tanım: UNIX icin programlanabilir bir komut arayuzu (shell)
2017-01-30 02:42:26 +01:00
# URL: http://www.zsh.org
2017-10-27 20:46:27 +02:00
# Paketçi: milisarge
# Gerekler: pcre
2016-02-24 01:27:23 +01:00
2017-10-28 14:10:23 +02:00
isim=zsh
surum=5.3.1
devir=1
kaynak=(http://www.zsh.org/pub/$isim-$surum.tar.xz)
2016-02-24 01:27:23 +01:00
2017-10-27 23:59:41 +02:00
derle(){
2017-10-28 14:10:23 +02:00
cd $isim-$surum
2016-02-24 01:27:23 +01:00
./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
2017-10-28 14:10:23 +02:00
install -v -dm755 $PKG/usr/share/doc/zsh-$surum/html
install -v -m644 Doc/html/* $PKG/usr/share/doc/zsh-$surum/html
install -v -m644 Doc/zsh.{html,txt} $PKG/usr/share/doc/zsh-$surum
2016-02-24 01:27:23 +01:00
}