Weechat

From CBLFS
Revision as of 13:55, 16 January 2007 by Jim (talk | contribs)
Jump to navigationJump to search
Download Source: http://weechat.flashtux.org/download/weechat-0.3.3.tar.bz2

Dependencies

Optional

Non-Multilib

Compile the package:

./configure --prefix=/usr --sysconfdir=/etc &&
make

Install the package

make install

Multilib

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

32Bit

Compile the package:

export USE_ARCH=32 &&
CC="gcc ${BUILD32}" ./configure --prefix=/usr --sysconfdir=/etc &&
make

Install the package

make install &&
unset USE_ARCH

N32

Compile the package:

export USE_ARCH=N32 &&
CC="gcc ${BUILDN32}" ./configure --prefix=/usr --sysconfdir=/etc &&
make

Install the package

make install &&
unset USE_ARCH

64Bit

Compile the package:

export USE_ARCH=64 &&
CC="gcc ${BUILD64}" ./configure --prefix=/usr --sysconfdir=/etc &&
make

Install the package

make install &&
unset USE_ARCH