Difference between revisions of "XviD"
From CBLFS
Jump to navigationJump to search (→32Bit) |
(I added the package description from BLFS.) |
||
Line 6: | Line 6: | ||
---- | ---- | ||
+ | |||
+ | == Introduction to XviD == | ||
+ | |||
+ | XviD is an MPEG-4 compliant video codec. | ||
== Dependencies == | == Dependencies == |
Revision as of 14:55, 6 December 2006
Download Source: | http://downloads.xvid.org/downloads/xvidcore-1.1.0.tar.bz2 |
---|
Contents
Introduction to XviD
XviD is an MPEG-4 compliant video codec.
Dependencies
Optional
Non-Multilib
Configure and compile the package:
cd build/generic && ./configure --prefix=/usr && make
Install the package:
make install && chmod -v 755 /usr/lib/libxvidcore.so.4.1 && ln -v -sf libxvidcore.so.4.1 /usr/lib/libxvidcore.so.4 && ln -v -sf libxvidcore.so.4 /usr/lib/libxvidcore.so && install -v -m755 -d /usr/share/doc/xvidcore-1.1.0/examples && install -v -m644 ../../doc/* /usr/share/doc/xvidcore-1.1.0 && install -v -m644 ../../examples/* /usr/share/doc/xvidcore-1.1.0/examples
Multilib
32Bit
Configure and compile the package:
cd build/generic && CC="gcc ${BUILD32}" ./configure --prefix=/usr --build=${CLFS_TARGET32} && make
Install the package:
make install && chmod -v 755 /usr/lib/libxvidcore.so.4.1 && ln -v -sf libxvidcore.so.4.1 /usr/lib/libxvidcore.so.4 && ln -v -sf libxvidcore.so.4 /usr/lib/libxvidcore.so
N32
Configure and compile the package:
cd build/generic && CC="gcc ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 && make
Install the package:
make install && chmod -v 755 /usr/lib/libxvidcore.so.4.1 && ln -v -sf libxvidcore.so.4.1 /usr/lib32/libxvidcore.so.4 && ln -v -sf libxvidcore.so.4 /usr/lib/32libxvidcore.so
64Bit
Configure and compile the package:
cd build/generic && CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 && make
Install the package:
make install && chmod -v 755 /usr/lib64/libxvidcore.so.4.1 && ln -v -sf libxvidcore.so.4.1 /usr/lib64/libxvidcore.so.4 && ln -v -sf libxvidcore.so.4 /usr/lib64/libxvidcore.so && install -v -m755 -d /usr/share/doc/xvidcore-1.1.0/examples && install -v -m644 ../../doc/* /usr/share/doc/xvidcore-1.1.0 && install -v -m644 ../../examples/* /usr/share/doc/xvidcore-1.1.0/examples