Difference between revisions of "TagLib"

From CBLFS
Jump to navigationJump to search
(Multilib)
Line 31: Line 31:
 
Install the package
 
Install the package
  
  make install
+
  make install &&
 +
mv -v /usr/bin/taglib-config{,-32}
  
 
=== N32 ===
 
=== N32 ===
Line 42: Line 43:
 
Install the package
 
Install the package
  
  make install
+
  make install &&
 +
mv -v /usr/bin/taglib-config{,-n32}
  
 
=== 64Bit ===
 
=== 64Bit ===
Line 53: Line 55:
 
Install the package
 
Install the package
  
  make install
+
  make install &&
 +
mv -v /usr/bin/taglib-config{,-64} &&
 +
ln -sfv multiarch_wrapper /usr/bin/taglib-config

Revision as of 14:36, 8 October 2006

Download Source: http://developer.kde.org/~wheeler/files/src/taglib-1.4.tar.gz

Dependencies

Non-Multilib

Compile the package:

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

Install the package

make install

Multilib

32Bit

Compile the package:

CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" ./configure --prefix=/usr --with-libsuffix=none &&
make

Install the package

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

N32

Compile the package:

CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" ./configure --prefix=/usr --with-libsuffix=32 &&
make

Install the package

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

64Bit

Compile the package:

CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" ./configure --prefix=/usr --with-libsuffix=64 &&
make

Install the package

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