EyeD3

From CBLFS
Revision as of 11:54, 4 February 2007 by Jciccone (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
Download Source: http://eyed3.nicfit.net/releases/eyeD3-0.6.9.tar.gz

Dependencies

Required

Non-Multilib

Compile the package:

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

Install the package:

make install

Multilib

32Bit

Compile the package:

export USE_ARCH=32 &&
./configure --prefix=/usr &&
make

Install the package:

make install &&
unset USE_ARCH

N32

Compile the package:

export USE_ARCH=n32 &&
./configure --prefix=/usr --libdir=/usr/lib32 &&
make

Install the package:

make install &&
unset USE_ARCH

64Bit

Compile the package:

export USE_ARCH=64 &&
./configure --prefix=/usr --libdir=/usr/lib64 &&
make

Install the package:

make install &&
unset USE_ARCH