Xvid4conf: Difference between revisions

From CBLFS
Jump to navigationJump to search
Start page
 
No edit summary
 
(7 intermediate revisions by 5 users not shown)
Line 2: Line 2:
|-
|-
!Download Source:
!Download Source:
| hhttp://apt.cerkinfo.be/pool/main/xvid4conf/xvid4conf_{{xvid4conf-Version}}.orig.tar.gz
| http://zebra.fh-weingarten.de/~transcode/xvid4conf/xvid4conf-{{xvid4conf-Version}}.tar.gz
|}
|}


Line 11: Line 11:
== Dependencies ==
== Dependencies ==


=== Optional ===
=== Required ===
* [[NASM]]
* [[pkg-config]]
* [[Yasm]]


== Non-Multilib ==
== Non-Multilib ==
Line 19: Line 18:
Configure and compile the package:
Configure and compile the package:


cd build/generic &&
  ./configure --prefix=/usr &&
./configure --prefix=/usr &&
  make
  make


Install the package:
Install the package:


  make install &&
  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-{{XviD-Version}}/examples &&
install -v -m644 ../../doc/* /usr/share/doc/xvidcore-{{XviD-Version}} &&
install -v -m644 ../../examples/* /usr/share/doc/xvidcore-{{XviD-Version}}/examples


== Multilib ==
== Multilib ==
Line 39: Line 31:
Configure and compile the package:
Configure and compile the package:
   
   
cd build/generic &&
  CC="gcc ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
  CC="gcc ${BUILD32}" ./configure --prefix=/usr --build=${CLFS_TARGET32} &&
./configure --prefix=/usr &&
  make
  make


Install the package:
Install the package:


  make install &&
  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 ===
=== N32 ===
Line 54: Line 43:
Configure and compile the package:
Configure and compile the package:


cd build/generic &&
  CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \
  CC="gcc ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 &&
./configure --prefix=/usr --libdir=/usr/lib32 &&
  make
  make


Install the package:
Install the package:


  make install &&
  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/lib32/libxvidcore.so


=== 64Bit ===
=== 64Bit ===
Line 69: Line 55:
Configure and compile the package:
Configure and compile the package:


cd build/generic &&
  CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
  CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 &&
./configure --prefix=/usr --libdir=/usr/lib64 &&
  make
  make


Install the package:
Install the package:


  make install &&
  make install
chmod -v 755 /usr/lib64/libxvidcore.so.4.1 &&
 
ln -v -sf libxvidcore.so.4.1 /usr/lib64/libxvidcore.so.4 &&
[[Category:Media Libraries]]
ln -v -sf libxvidcore.so.4 /usr/lib64/libxvidcore.so &&
install -v -m755 -d /usr/share/doc/xvidcore-{{XviD-Version}}/examples &&
install -v -m644 ../../doc/* /usr/share/doc/xvidcore-{{XviD-Version}} &&
install -v -m644 ../../examples/* /usr/share/doc/xvidcore-{{XviD-Version}}/examples

Latest revision as of 23:33, 19 March 2009

Download Source: http://zebra.fh-weingarten.de/~transcode/xvid4conf/xvid4conf-1.12.tar.gz

Introduction to Xvid4conf

This tool creates XviD configuration files. The generated configuration file is meant to be read by transcodes xvid4 export module. This module (and so the configuration file) is intended to be used with XviD 1.0 (dev-api-4).

Project Homepage: http://www.t2-project.org/packages/xvid4conf.html

Dependencies

Required

Non-Multilib

Configure and compile the package:

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

Install the package:

make install

Multilib

32Bit

Configure and compile the package:

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

Install the package:

make install 

N32

Configure and compile the package:

CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \
./configure --prefix=/usr --libdir=/usr/lib32 &&
make

Install the package:

make install 

64Bit

Configure and compile the package:

CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
./configure --prefix=/usr --libdir=/usr/lib64 &&
make

Install the package:

make install