ZSH: Difference between revisions
From CBLFS
Jump to navigationJump to search
No edit summary |
No edit summary |
||
| (9 intermediate revisions by 2 users not shown) | |||
| Line 2: | Line 2: | ||
|- | |- | ||
!Download Source: | !Download Source: | ||
| http://prdownloads.sourceforge.net/zsh/zsh- | | http://prdownloads.sourceforge.net/zsh/zsh-{{ZSH-Version}}.tar.bz2 | ||
|} | |} | ||
---- | ---- | ||
{{Package-Introduction|The ZSH package contains a command interpreter (shell) usable as an interactive login shell and as a shell script command processor. Of the standard shells, ZSH most closely resembles KSH but includes many enhancements.}} | |||
== Dependencies == | == Dependencies == | ||
=== Optional === | === Optional === | ||
* [[ | * [[Pcre]] | ||
== Non-Multilib == | == Non-Multilib == | ||
| Line 16: | Line 18: | ||
Compile the package: | Compile the package: | ||
./configure --prefix=/usr && | ./configure --prefix=/usr --with-tcsetpgrp && | ||
make | make | ||
Install the package | Install the package | ||
make install | make install && | ||
make install.info | make install.info | ||
== Multilib == | == Multilib == | ||
=== 32Bit === | === 32Bit === | ||
| Line 31: | Line 32: | ||
Compile the package: | Compile the package: | ||
CC="gcc ${BUILD32}" ./configure --prefix=/usr && | CC="gcc ${BUILD32}" ./configure --prefix=/usr --with-tcsetpgrp && | ||
make | make | ||
| Line 37: | Line 38: | ||
make install | make install | ||
=== N32 === | === N32 === | ||
| Line 43: | Line 43: | ||
Compile the package: | Compile the package: | ||
CC="gcc ${BUILDN32}" ./configure --prefix=/usr && | CC="gcc ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 \ | ||
--with-tcsetpgrp && | |||
make | make | ||
| Line 49: | Line 50: | ||
make install | make install | ||
=== 64Bit === | === 64Bit === | ||
| Line 55: | Line 55: | ||
Compile the package: | Compile the package: | ||
CC="gcc ${BUILD64}" ./configure --prefix=/usr && | CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 \ | ||
--with-tcsetpgrp && | |||
make | make | ||
Install the package | Install the package | ||
make install | make install && | ||
make install.info | make install.info | ||
[[Category:Shells]] | |||
Latest revision as of 17:48, 5 July 2008
| Download Source: | http://prdownloads.sourceforge.net/zsh/zsh-4.2.7.tar.bz2 |
|---|
Introduction to ZSH
The ZSH package contains a command interpreter (shell) usable as an interactive login shell and as a shell script command processor. Of the standard shells, ZSH most closely resembles KSH but includes many enhancements.
Project Homepage: Unknown
Dependencies
Optional
Non-Multilib
Compile the package:
./configure --prefix=/usr --with-tcsetpgrp && make
Install the package
make install && make install.info
Multilib
32Bit
Compile the package:
CC="gcc ${BUILD32}" ./configure --prefix=/usr --with-tcsetpgrp &&
make
Install the package
make install
N32
Compile the package:
CC="gcc ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 \
--with-tcsetpgrp &&
make
Install the package
make install
64Bit
Compile the package:
CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 \
--with-tcsetpgrp &&
make
Install the package
make install && make install.info