Weechat: Difference between revisions
From CBLFS
Jump to navigationJump to search
No edit summary |
No edit summary |
||
| Line 11: | Line 11: | ||
=== Optional === | === Optional === | ||
* [[GnuTLS]] | |||
* [[Python]] | |||
* [[Ruby]] | |||
* [[Lua]] | |||
* [[Aspell]] | |||
== Non-Multilib == | == Non-Multilib == | ||
| Line 24: | Line 29: | ||
== Multilib == | == Multilib == | ||
'''''This package does not provide any external libraries so only one installation is needed.''''' | '''''This package does not provide any external libraries, only plugins, so only one installation is needed.''''' | ||
=== 32Bit === | === 32Bit === | ||
| Line 30: | Line 35: | ||
Compile the package: | Compile the package: | ||
CC="gcc ${BUILD32}" USE_ARCH=32 \ | |||
CC="gcc ${BUILD32}" ./configure --prefix=/usr --sysconfdir=/etc && | ./configure --prefix=/usr --sysconfdir=/etc && | ||
make | make | ||
Install the package | Install the package | ||
make install | make install | ||
=== N32 === | === N32 === | ||
| Line 43: | Line 47: | ||
Compile the package: | Compile the package: | ||
CC="gcc ${BUILD32}" USE_ARCH=32 \ | |||
CC="gcc ${ | ./configure --prefix=/usr --sysconfdir=/etc \ | ||
--libdir=/usr/lib32 && | |||
make | make | ||
Install the package | Install the package | ||
make install | make install | ||
=== 64Bit === | === 64Bit === | ||
| Line 56: | Line 60: | ||
Compile the package: | Compile the package: | ||
CC="gcc ${BUILD64}" USE_ARCH=64 \ | |||
CC="gcc ${BUILD64}" ./configure --prefix=/usr --sysconfdir=/etc && | ./configure --prefix=/usr --sysconfdir=/etc \ | ||
--libdir=/usr/lib64 && | |||
make | make | ||
Install the package | Install the package | ||
make install | make install | ||
Revision as of 14:18, 16 January 2007
| 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, only plugins, so only one installation is needed.
32Bit
Compile the package:
CC="gcc ${BUILD32}" USE_ARCH=32 \
./configure --prefix=/usr --sysconfdir=/etc &&
make
Install the package
make install
N32
Compile the package:
CC="gcc ${BUILD32}" USE_ARCH=32 \
./configure --prefix=/usr --sysconfdir=/etc \
--libdir=/usr/lib32 &&
make
Install the package
make install
64Bit
Compile the package:
CC="gcc ${BUILD64}" USE_ARCH=64 \
./configure --prefix=/usr --sysconfdir=/etc \
--libdir=/usr/lib64 &&
make
Install the package
make install