Difference between revisions of "Blackbox"

From CBLFS
Jump to navigationJump to search
 
 
(6 intermediate revisions by 2 users not shown)
Line 2: Line 2:
 
|-
 
|-
 
!Download Source:
 
!Download Source:
| http://prdownloads.sourceforge.net/blackboxwm/blackbox-0.70.1.tar.bz2
+
| http://downloads.sourceforge.net/blackboxwm/blackbox-{{Blackbox-Version}}.tar.bz2
 
|}
 
|}
  
 
----
 
----
 +
 +
{{Package-Introduction||http://blackboxwm.sourceforge.net/}}
  
 
== Dependencies ==
 
== Dependencies ==
Line 16: Line 18:
 
Compile the package:
 
Compile the package:
  
  ./configure --prefix=/usr &&
+
  ./configure --prefix=/usr --enable-shared &&
 
  make
 
  make
  
Line 67: Line 69:
  
 
  make install
 
  make install
 +
 +
[[Category:Window Managers]]

Latest revision as of 16:57, 13 May 2010

Download Source: http://downloads.sourceforge.net/blackboxwm/blackbox-0.70.1.tar.bz2

Introduction to Blackbox

Project Homepage: http://blackboxwm.sourceforge.net/

Dependencies

Required

Non-Multilib

Compile the package:

./configure --prefix=/usr --enable-shared &&
make

Install the package

make install

Multilib

32Bit

Compile the package:

CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" USE_ARCH=32 \
PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
./configure --prefix=/usr --enable-shared &&
make

Install the package

make install

N32

Compile the package:

sed -i "/-L/s:/lib:&32:g" configure &&
CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" USE_ARCH=n32 \
PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \
./configure --prefix=/usr --libdir=/usr/lib32 \
    --enable-shared &&
make

Install the package

make install

64Bit

Compile the package:

sed -i "/-L/s:/lib:&64:g" configure &&
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" USE_ARCH=64 \
PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
./configure --prefix=/usr --libdir=/usr/lib64 \
    --enable-shared &&
make

Install the package

make install