Difference between revisions of "Screen"

From CBLFS
Jump to navigationJump to search
 
(Optional)
Line 13: Line 13:
  
 
=== Optional ===
 
=== Optional ===
* [[Linux-PAM]]
+
* [[Linux-Pam]]
  
 
== Non-Multilib ==
 
== Non-Multilib ==

Revision as of 04:10, 1 October 2006

Download Source: http://ftp.gnu.org/pub/gnu/screen/screen-4.0.2.tar.gz
Download Source: ftp://ftp.gnu.org/pub/gnu/screen/screen-4.0.2.tar.gz

Dependencies

Optional

Non-Multilib

Compile the package:

./configure --prefix=/usr --with-socket-dir=/var/run/screen \
    --with-sys-screenrc=/etc/screenrc &&
sed -i -e "s%/usr/local/etc/screenrc%/etc/screenrc%" {etc,doc}/* &&
make

Install the package

make install

Multilib

This package does not provide any libraries so only one installation is needed.

32Bit

Compile the package:

CC="gcc ${BUILD32}" ./configure --prefix=/usr --with-socket-dir=/var/run/screen \
    --with-sys-screenrc=/etc/screenrc &&
sed -i -e "s%/usr/local/etc/screenrc%/etc/screenrc%" {etc,doc}/* &&
make

Install the package

make install &&
install -m 644 etc/etcscreenrc /etc/screenrc

N32

Compile the package:

CC="gcc ${BUILDN32}" ./configure --prefix=/usr --with-socket-dir=/var/run/screen \
    --with-sys-screenrc=/etc/screenrc &&
sed -i -e "s%/usr/local/etc/screenrc%/etc/screenrc%" {etc,doc}/* &&
make

Install the package

make install &&
install -m 644 etc/etcscreenrc /etc/screenrc

64Bit

Compile the package:

CC="gcc ${BUILD64}" ./configure --prefix=/usr --with-socket-dir=/var/run/screen \
    --with-sys-screenrc=/etc/screenrc &&
sed -i -e "s%/usr/local/etc/screenrc%/etc/screenrc%" {etc,doc}/* &&
make

Install the package

make install &&
install -m 644 etc/etcscreenrc /etc/screenrc