Difference between revisions of "Vorbis Tools"

From CBLFS
Jump to navigationJump to search
(Dependencies)
(64Bit)
Line 69: Line 69:
 
  find docs -name "Makefile*" -o -name "*.1" -o -name "*.3" | xargs rm &&
 
  find docs -name "Makefile*" -o -name "*.1" -o -name "*.3" | xargs rm &&
 
  install -v -d -m755 /usr/share/doc/curl-7.15.1 &&
 
  install -v -d -m755 /usr/share/doc/curl-7.15.1 &&
  cp -v -R docs/* /usr/share/doc/curl-7.15.1 &&
+
  cp -v -R docs/* /usr/share/doc/curl-7.15.1
  
 
*[[Audio/Media]]
 
*[[Audio/Media]]
 
*[[Main Page]]
 
*[[Main Page]]

Revision as of 21:29, 12 September 2006

Download Source: http://downloads.xiph.org/releases/vorbis/vorbis-tools-1.1.1.tar.gz

Dependencies

Required

Recommended (Required to Build the 'ogg123' Program)

Non-Multilib

Configure and compile the package:

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

Install the package:

make install &&
find docs -name "Makefile*" -o -name "*.1" -o -name "*.3" | xargs rm &&
install -v -d -m755 /usr/share/doc/curl-7.15.1 &&
cp -v -R docs/* /usr/share/doc/curl-7.15.1

Multilib

32Bit

Configure and compile the package:

CC="gcc ${BUILD32}" ./configure --prefix=/usr &&
make

Install the package:

make install &&
find docs -name "Makefile*" -o -name "*.1" -o -name "*.3" | xargs rm 

N32

Configure and compile the package:

CC="gcc ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 &&
make

Install the package:

make install &&
find docs -name "Makefile*" -o -name "*.1" -o -name "*.3" | xargs rm 

64Bit

Configure and compile the package:

CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 &&
make

Install the package:

make install &&
find docs -name "Makefile*" -o -name "*.1" -o -name "*.3" | xargs rm &&
install -v -d -m755 /usr/share/doc/curl-7.15.1 &&
cp -v -R docs/* /usr/share/doc/curl-7.15.1