Difference between revisions of "TagLib"

From CBLFS
Jump to navigationJump to search
 
(Updated to TagLib 1.5)
 
(11 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 
{| style="text-align: left; background-color: AliceBlue;"
 
{| style="text-align: left; background-color: AliceBlue;"
|-
+
|-valign="top"
 
!Download Source:
 
!Download Source:
| http://developer.kde.org/~wheeler/files/src/taglib-1.4.tar.gz
+
| http://developer.kde.org/~wheeler/files/src/taglib-{{TagLib-Version}}.tar.gz
 
|}
 
|}
  
----
+
{{Package-Introduction|TagLib is a library for reading and editing the meta-data of several popular audio formats. Currently it supports both ID3v1 and ID3v2 for MP3 ([[LAME]]) files, Ogg Vorbis ([[libvorbis]]) comments and ID3 tags and Vorbis comments in [[FLAC]] files as well as MPC.|http://developer.kde.org/~wheeler/taglib.html}}
  
 
== Dependencies ==
 
== Dependencies ==
Line 12: Line 12:
  
 
Compile the package:
 
Compile the package:
 
+
 
  ./configure --prefix=/usr &&
 
  ./configure --prefix=/usr &&
 
  make
 
  make
Line 31: Line 31:
 
Install the package
 
Install the package
  
  make install
+
  make install &&
 +
mv -v /usr/bin/taglib-config{,-32}
  
 
=== N32 ===
 
=== N32 ===
Line 37: Line 38:
 
Compile the package:
 
Compile the package:
  
  CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 &&
+
  CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" ./configure --prefix=/usr \
 +
    --libdir=/usr/lib32 &&
 
  make
 
  make
  
 
Install the package
 
Install the package
  
  make install
+
  make install &&
 +
mv -v /usr/bin/taglib-config{,-n32}
  
 
=== 64Bit ===
 
=== 64Bit ===
Line 48: Line 51:
 
Compile the package:
 
Compile the package:
  
  CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 &&
+
  CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" ./configure --prefix=/usr \
 +
    --libdir=/usr/lib64 &&
 
  make
 
  make
  
 
Install the package
 
Install the package
  
  make install
+
  make install &&
 +
mv -v /usr/bin/taglib-config{,-64} &&
 +
ln -sfv multiarch_wrapper /usr/bin/taglib-config
 +
 
 +
[[Category:Media Libraries]]

Latest revision as of 00:18, 23 March 2009

Download Source: http://developer.kde.org/~wheeler/files/src/taglib-1.5.tar.gz

Introduction to TagLib

TagLib is a library for reading and editing the meta-data of several popular audio formats. Currently it supports both ID3v1 and ID3v2 for MP3 (LAME) files, Ogg Vorbis (libvorbis) comments and ID3 tags and Vorbis comments in FLAC files as well as MPC.

Project Homepage: http://developer.kde.org/~wheeler/taglib.html

Dependencies

Non-Multilib

Compile the package:

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

Install the package

make install

Multilib

32Bit

Compile the package:

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

Install the package

make install &&
mv -v /usr/bin/taglib-config{,-32}

N32

Compile the package:

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

Install the package

make install &&
mv -v /usr/bin/taglib-config{,-n32}

64Bit

Compile the package:

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

Install the package

make install &&
mv -v /usr/bin/taglib-config{,-64} &&
ln -sfv multiarch_wrapper /usr/bin/taglib-config