TagLib: Difference between revisions
From CBLFS
Jump to navigationJump to search
No edit summary |
No edit summary |
||
Line 26: | Line 26: | ||
Compile the package: | Compile the package: | ||
CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" ./configure --prefix=/usr && | CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" ./configure --prefix=/usr --with-libsuffix=none && | ||
make | make | ||
Line 37: | Line 37: | ||
Compile the package: | Compile the package: | ||
CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" ./configure --prefix=/usr -- | CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" ./configure --prefix=/usr --with-libsuffix=32 && | ||
make | make | ||
Line 48: | Line 48: | ||
Compile the package: | Compile the package: | ||
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" ./configure --prefix=/usr -- | CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" ./configure --prefix=/usr --with-libsuffix=64 && | ||
make | make | ||
Revision as of 14:34, 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
N32
Compile the package:
CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" ./configure --prefix=/usr --with-libsuffix=32 && make
Install the package
make install
64Bit
Compile the package:
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" ./configure --prefix=/usr --with-libsuffix=64 && make
Install the package
make install