Id3lib: Difference between revisions
From CBLFS
Jump to navigationJump to search
No edit summary |
No edit summary |
||
| Line 2: | Line 2: | ||
|- | |- | ||
!Download Source: | !Download Source: | ||
| http://prdownloads.sourceforge.net/id3lib/id3lib- | | http://prdownloads.sourceforge.net/id3lib/id3lib-{{Id3lib-Version}}.tar.gz | ||
|- | |- | ||
!Optional patches: | !Optional patches: | ||
| http://prdownloads.sourceforge.net/easytag/ | | http://prdownloads.sourceforge.net/easytag/patch_id3lib_{{Id3lib-Version}}_UTF16_writing_bug.diff?download | ||
|} | |} | ||
| Line 20: | Line 20: | ||
First to choose if you are going to apply an optional patch that fix a UTF16 writing bug. If so: | First to choose if you are going to apply an optional patch that fix a UTF16 writing bug. If so: | ||
patch -Np1 -i ../ | patch -Np1 -i ../patch_id3lib_{{Id3lib-Version}}_UTF16_writing_bug.diff | ||
Configure and compile the package: | Configure and compile the package: | ||
| Line 35: | Line 35: | ||
First to choose if you are going to apply an optional patch that fix a UTF16 writing bug. If so: | First to choose if you are going to apply an optional patch that fix a UTF16 writing bug. If so: | ||
patch -Np1 -i ../ | patch -Np1 -i ../patch_id3lib_{{Id3lib-Version}}_UTF16_writing_bug.diff | ||
=== 32Bit === | === 32Bit === | ||
| Line 52: | Line 52: | ||
Configure and compile the package: | Configure and compile the package: | ||
CC="gcc ${BUILDN32}" CXX="g++ ${ | CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 && | ||
make | make | ||
Revision as of 17:40, 17 December 2006
| Download Source: | http://prdownloads.sourceforge.net/id3lib/id3lib-3.8.3.tar.gz |
|---|---|
| Optional patches: | http://prdownloads.sourceforge.net/easytag/patch_id3lib_3.8.3_UTF16_writing_bug.diff?download |
Introduction to Id3lib
Id3lib is a library for reading, writing and manipulating ID3v1 and ID3v2 tags.
Dependencies
Non-Multilib
First to choose if you are going to apply an optional patch that fix a UTF16 writing bug. If so:
patch -Np1 -i ../patch_id3lib_3.8.3_UTF16_writing_bug.diff
Configure and compile the package:
./configure --prefix=/usr && make
Install the package:
make install
Multilib
First to choose if you are going to apply an optional patch that fix a UTF16 writing bug. If so:
patch -Np1 -i ../patch_id3lib_3.8.3_UTF16_writing_bug.diff
32Bit
Configure and compile the package:
CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" ./configure --prefix=/usr &&
make
Install the package:
make install
N32
Configure and compile the package:
CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 &&
make
Install the package:
make install
64Bit
Configure and compile the package:
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 &&
make
Install the package:
make install