Difference between revisions of "EsounD"

From CBLFS
Jump to navigationJump to search
 
Line 45: Line 45:
 
Install the package
 
Install the package
  
  make install
+
  make install &&
 +
mv -v /usr/bin/esd-config{,-32}
  
 
=== N32 ===
 
=== N32 ===
Line 58: Line 59:
 
Install the package
 
Install the package
  
  make install
+
  make install &&
 +
mv -v /usr/bin/esd-config{,-n32}
  
 
=== 64Bit ===
 
=== 64Bit ===
Line 71: Line 73:
 
Install the package
 
Install the package
  
  make install
+
  make install &&
 +
mv -v /usr/bin/esd-config{,-64} &&
 +
ln -sfv multiarch_wrapper /usr/bin/esd-config
  
 
If you have [[DocBook Utils]] installed, the HTML documentation should have been built. Install it with the following command:
 
If you have [[DocBook Utils]] installed, the HTML documentation should have been built. Install it with the following command:
  
 
  cp -v -R docs/html /usr/share/doc/esound-0.2.36
 
  cp -v -R docs/html /usr/share/doc/esound-0.2.36

Revision as of 14:27, 30 September 2006

Download Source: http://ftp.gnome.org/pub/gnome/sources/esound/0.2/esound-0.2.36.tar.bz2

Dependencies

Required

Optional

Non-Multilib

Compile the package:

sed -i 's@doc/esound@&-0.2.36@' configure &&
./configure --prefix=/usr --sysconfdir=/etc &&
make

Install the package

make install

If you have DocBook Utils installed, the HTML documentation should have been built. Install it with the following command:

cp -v -R docs/html /usr/share/doc/esound-0.2.36

Multilib

32Bit

Compile the package:

sed -i 's@doc/esound@&-0.2.36@' configure &&
CC="gcc ${BUILD32}" USE_ARCH=32 ./configure --prefix=/usr --sysconfdir=/etc &&
make

Install the package

make install &&
mv -v /usr/bin/esd-config{,-32}

N32

Compile the package:

sed -i 's@doc/esound@&-0.2.36@' configure &&
CC="gcc ${BUILDN32}" USE_ARCH=n32 ./configure --prefix=/usr --sysconfdir=/etc \
    --libdir=/usr/lib32 &&
make

Install the package

make install &&
mv -v /usr/bin/esd-config{,-n32}

64Bit

Compile the package:

sed -i 's@doc/esound@&-0.2.36@' configure &&
CC="gcc ${BUILD64}" USE_ARCH=64 ./configure --prefix=/usr --sysconfdir=/etc \
    --libdir=/usr/lib64 &&
make

Install the package

make install &&
mv -v /usr/bin/esd-config{,-64} &&
ln -sfv multiarch_wrapper /usr/bin/esd-config

If you have DocBook Utils installed, the HTML documentation should have been built. Install it with the following command:

cp -v -R docs/html /usr/share/doc/esound-0.2.36