LibMPEG3: Difference between revisions
From CBLFS
Jump to navigationJump to search
I added the package description from BLFS. |
No edit summary |
||
| Line 2: | Line 2: | ||
|- | |- | ||
!Download Source: | !Download Source: | ||
| http://prdownloads.sourceforge.net/heroines/libmpeg3- | | http://prdownloads.sourceforge.net/heroines/libmpeg3-{{LibMPEG3-Version}}-src.tar.bz2 | ||
|- | |- | ||
!Download Patch: | !Download Patch: | ||
| http://www.linuxfromscratch.org/patches/blfs/svn/libmpeg3- | | http://www.linuxfromscratch.org/patches/blfs/svn/libmpeg3-{{LibMPEG3-Version}}-blfs_install-1.patch | ||
|} | |} | ||
| Line 23: | Line 23: | ||
Configure and compile the package: | Configure and compile the package: | ||
patch -Np1 -i ../libmpeg3- | patch -Np1 -i ../libmpeg3-{{LibMPEG3-Version}}-blfs_install-1.patch && | ||
./configure --prefix=/usr && | ./configure --prefix=/usr && | ||
make | make | ||
| Line 39: | Line 39: | ||
Configure and compile the package: | Configure and compile the package: | ||
patch -Np1 -i ../libmpeg3- | patch -Np1 -i ../libmpeg3-{{LibMPEG3-Version}}-blfs_install-1.patch && | ||
CC="gcc ${BUILD32}" ./configure --prefix=/usr && | CC="gcc ${BUILD32}" ./configure --prefix=/usr && | ||
make | make | ||
| Line 53: | Line 53: | ||
Configure and compile the package: | Configure and compile the package: | ||
patch -Np1 -i ../libmpeg3- | patch -Np1 -i ../libmpeg3-{{LibMPEG3-Version}}-blfs_install-1.patch && | ||
CC="gcc ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 && | CC="gcc ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 && | ||
make | make | ||
| Line 67: | Line 67: | ||
Configure and compile the package: | Configure and compile the package: | ||
patch -Np1 -i ../libmpeg3- | patch -Np1 -i ../libmpeg3-{{LibMPEG3-Version}}-blfs_install-1.patch && | ||
CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 && | CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 && | ||
make | make | ||
Revision as of 17:27, 17 December 2006
| Download Source: | http://prdownloads.sourceforge.net/heroines/libmpeg3-1.7-src.tar.bz2 |
|---|---|
| Download Patch: | http://www.linuxfromscratch.org/patches/blfs/svn/libmpeg3-1.7-blfs_install-1.patch |
Introduction to LibMPEG3
LibMPEG3 supports advanced editing and manipulation of MPEG streams.
Dependencies
Required
Non-Multilib
Configure and compile the package:
patch -Np1 -i ../libmpeg3-1.7-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.7-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.7-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.7-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