Difference between revisions of "FLAC"

From CBLFS
Jump to navigationJump to search
Line 34: Line 34:
 
=== 32Bit ===
 
=== 32Bit ===
  
TO DO!
+
Configure and compile the package:
 +
 
 +
patch -Np1 -i ../flac-1.1.2-fixes-3.patch &&
 +
CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" LD="ld ${LD_BUILD32}" USE_ARCH=32 \
 +
PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" LIBS=-lm ./configure --prefix=/usr &&
 +
make
 +
 
 +
Install the package:
 +
 
 +
make install
  
 
=== N32 ===
 
=== N32 ===
  
TO DO!
+
Configure and compile the package:
 +
 
 +
patch -Np1 -i ../flac-1.1.2-fixes-3.patch &&
 +
CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" LD="ld ${LD_BUILDN32}" USE_ARCH=n32 \
 +
PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" LIBS=-lm ./configure --prefix=/usr \
 +
    --libdir=/usr/lib32 &&
 +
make
 +
 
 +
Install the package:
 +
 
 +
make install
  
 
=== 64Bit ===
 
=== 64Bit ===
  
TO DO!
+
Configure and compile the package:
 +
 
 +
patch -Np1 -i ../flac-1.1.2-fixes-3.patch &&
 +
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" LD="ld ${LD_BUILD64}" USE_ARCH=64 \
 +
PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" LIBS=-lm ./configure --prefix=/usr \
 +
    --libdir=/usr/lib64 &&
 +
make
 +
 
 +
Install the package:
  
*[[Audio/Media]]
+
make install
*[[Main Page]]
 

Revision as of 13:12, 8 October 2006

Download Source: http://prdownloads.sourceforge.net/flac/flac-1.1.2.tar.gz
Download Patch: http://svn.cross-lfs.org/svn/repos/patches/flac/flac-1.1.2-fixes-3.patch

Dependencies

Non-Multilib

Configure and compile the package:

patch -Np1 -i ../flac-1.1.2-fixes-3.patch &&
LIBS=-lm ./configure --prefix=/usr &&
make 

Install the package:

make install

Multilib

32Bit

Configure and compile the package:

patch -Np1 -i ../flac-1.1.2-fixes-3.patch &&
CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" LD="ld ${LD_BUILD32}" USE_ARCH=32 \
PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" LIBS=-lm ./configure --prefix=/usr &&
make 

Install the package:

make install

N32

Configure and compile the package:

patch -Np1 -i ../flac-1.1.2-fixes-3.patch &&
CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" LD="ld ${LD_BUILDN32}" USE_ARCH=n32 \
PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" LIBS=-lm ./configure --prefix=/usr \
    --libdir=/usr/lib32 &&
make 

Install the package:

make install

64Bit

Configure and compile the package:

patch -Np1 -i ../flac-1.1.2-fixes-3.patch &&
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" LD="ld ${LD_BUILD64}" USE_ARCH=64 \
PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" LIBS=-lm ./configure --prefix=/usr \
    --libdir=/usr/lib64 &&
make 

Install the package:

make install