Difference between revisions of "Libcanberra"

From CBLFS
Jump to navigationJump to search
(New page: {| style="text-align: left; background-color: AliceBlue;" |- !Download Source: | http://0pointer.de/lennart/projects/libcanberra/libcanberra-{{Libcanberra-Version}}.tar.gz |} ---- {{Blan...)
 
(64Bit)
 
Line 69: Line 69:
 
  PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
 
  PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
 
  ./configure --prefix=${GNOME_PREFIX} --sysconfdir=/etc/gnome \
 
  ./configure --prefix=${GNOME_PREFIX} --sysconfdir=/etc/gnome \
     --libdir=/usr/lib64 &&
+
     --libdir=${GNOME_PREFIX}/lib64 &&
 
  make
 
  make
  

Latest revision as of 18:28, 25 April 2011

Download Source: http://0pointer.de/lennart/projects/libcanberra/libcanberra-0.24.tar.gz

Introduction to Libcanberra

Project Homepage: Unknown

Dependencies

Required

Optional

Non-Multilib

Compile the package:

./configure --prefix=${GNOME_PREFIX} --sysconfdir=/etc/gnome &&
make

Install the package

make install

Multilib

32Bit

Compile the package:

CC="gcc ${BUILD32}" USE_ARCH=32 \
PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
./configure --prefix=${GNOME_PREFIX} --sysconfdir=/etc/gnome &&
make

Install the package

make install

N32

Compile the package:

CC="gcc ${BUILDN32}" USE_ARCH=n32 \
PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \
./configure --prefix=${GNOME_PREFIX} --sysconfdir=/etc/gnome \
    --libdir=/usr/lib32 &&
make

Install the package

make install

64Bit

Compile the package:

CC="gcc ${BUILD64}" USE_ARCH=64 \
PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
./configure --prefix=${GNOME_PREFIX} --sysconfdir=/etc/gnome \
    --libdir=${GNOME_PREFIX}/lib64 &&
make

Install the package

make install