Difference between revisions of "Transcode"

From CBLFS
Jump to navigationJump to search
(Multilib)
(64Bit)
Line 99: Line 99:
 
Configure and compile the package:
 
Configure and compile the package:
  
 +
sed -i '/^deflib=/s:/lib:&64:' configure &&
 
  CC="gcc ${BUILD64}" USE_ARCH=64 \
 
  CC="gcc ${BUILD64}" USE_ARCH=64 \
 
  PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
 
  PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \

Revision as of 17:20, 2 November 2006

Download Source: http://www.kraymer.mynetcologne.de/transcode-1.0.2.tar.gz

Dependencies

Required

Recommended

Optional (Listed in the Order That the configure Script Looks for Them)

Configuration Information

There are numerous configuration options listed below that you may want to use:

--enable-v4l \
--enable-avifile\
--enable-ogg \
--enable-vorbis\
--enable-theora \
--enable-libdv \
--enable-libquicktime \
--enable-liblzo \
--enable-a52{,-default-decoder} \
--enable-libmpeg3 \
--enable-libxml2 \
--enable-mjpegtools \
--enable-sdl \
--enable-gtk \
--enable-libfame \
--enable-imagemagick

Non-Multilib

Configure and compile the package:

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

Install the package:

make install

Multilib

This package does not install any external libraries so only one installation is needed.

32Bit

Configure and compile the package:

CC="gcc ${BUILD32}" USE_ARCH=32 \
PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
./configure --prefix=/usr --build=${CLFS_TARGET32} &&
make

Install the package:

make install

N32

TODO

64Bit

Configure and compile the package:

sed -i '/^deflib=/s:/lib:&64:' configure &&
CC="gcc ${BUILD64}" USE_ARCH=64 \
PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
./configure --prefix=/usr \
    --libdir=/usr/lib64 &&
make

Install the package:

make install