Difference between revisions of "EyeD3"

From CBLFS
Jump to navigationJump to search
m
 
 
(2 intermediate revisions by one other user not shown)
Line 2: Line 2:
 
|-
 
|-
 
!Download Source:
 
!Download Source:
| http://eyed3.nicfit.net/releases/eyeD3-0.6.9.tar.gz
+
| http://eyed3.nicfit.net/releases/eyeD3-{{EyeD3-Version}}.tar.gz
 
|}
 
|}
  
 
----
 
----
 +
 +
{{Blank-Package-Introduction}}
  
 
== Dependencies ==
 
== Dependencies ==
Line 63: Line 65:
 
  make install &&
 
  make install &&
 
  unset USE_ARCH
 
  unset USE_ARCH
 +
 +
[[Category:Python Modules]]

Latest revision as of 10:17, 19 October 2010

Download Source: http://eyed3.nicfit.net/releases/eyeD3-0.6.14.tar.gz

Introduction to EyeD3

Project Homepage: Unknown

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