Difference between revisions of "Xvid4conf"
From CBLFS
Jump to navigationJump to search (→64Bit) |
|||
(4 intermediate revisions by 3 users not shown) | |||
Line 2: | Line 2: | ||
|- | |- | ||
!Download Source: | !Download Source: | ||
− | | http:// | + | | http://zebra.fh-weingarten.de/~transcode/xvid4conf/xvid4conf-{{xvid4conf-Version}}.tar.gz |
|} | |} | ||
Line 23: | Line 23: | ||
Install the package: | Install the package: | ||
− | make install | + | make install |
== Multilib == | == Multilib == | ||
Line 31: | Line 31: | ||
Configure and compile the package: | Configure and compile the package: | ||
− | CC="gcc ${BUILD32}" ./configure --prefix=/usr && | + | CC="gcc ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \ |
+ | ./configure --prefix=/usr && | ||
make | make | ||
Line 42: | Line 43: | ||
Configure and compile the package: | Configure and compile the package: | ||
− | CC="gcc ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 && | + | CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \ |
+ | ./configure --prefix=/usr --libdir=/usr/lib32 && | ||
make | make | ||
Line 53: | Line 55: | ||
Configure and compile the package: | Configure and compile the package: | ||
− | CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" ./configure --prefix=/usr --libdir=/usr/lib64 && | + | CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \ |
+ | ./configure --prefix=/usr --libdir=/usr/lib64 && | ||
make | make | ||
Line 59: | Line 62: | ||
make install | make install | ||
+ | |||
+ | [[Category:Media Libraries]] |
Latest revision as of 15:33, 19 March 2009
Download Source: | http://zebra.fh-weingarten.de/~transcode/xvid4conf/xvid4conf-1.12.tar.gz |
---|
Contents
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