LibMPEG3

From CBLFS
Revision as of 18:55, 12 October 2006 by Manphiz (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
Download Source: http://prdownloads.sourceforge.net/heroines/libmpeg3-1.7-src.tar.bz2
Download Patch: http://www.linuxfromscratch.org/patches/blfs/svn/libmpeg3-1.6-blfs_install-1.patch

Dependencies

Required

Non-Multilib

Configure and compile the package:

patch -Np1 -i ../libmpeg3-1.6-blfs_install-1.patch &&
./configure --prefix=/usr &&
make

Perhaps one should type `make' twice here to continue build process.

Install the package:

make install

Multilib

32Bit

Configure and compile the package:

patch -Np1 -i ../libmpeg3-1.6-blfs_install-1.patch &&
CC="gcc ${BUILD32}" ./configure --prefix=/usr &&
make

Perhaps one should type `make' twice here to continue build process.

Install the package:

make install

N32

Configure and compile the package:

patch -Np1 -i ../libmpeg3-1.6-blfs_install-1.patch &&
CC="gcc ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 &&
make

Perhaps one should type `make' twice here to continue build process.

Install the package:

make install

64Bit

Configure and compile the package:

patch -Np1 -i ../libmpeg3-1.6-blfs_install-1.patch &&
CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 &&
make

Perhaps one should type `make' twice here to continue build process.

Install the package:

make install