Libid3tag: Difference between revisions
From CBLFS
Jump to navigationJump to search
No edit summary |
No edit summary |
||
| (6 intermediate revisions by 3 users not shown) | |||
| Line 2: | Line 2: | ||
|- | |- | ||
!Download Source: | !Download Source: | ||
| http://prdownloads.sourceforge.net/mad/libid3tag- | | http://prdownloads.sourceforge.net/mad/libid3tag-{{Libid3tag-Version}}.tar.gz | ||
|} | |} | ||
---- | ---- | ||
{{Package-Introduction|Libid3tag is an ID3 tag manipulation library.|http://www.underbit.com/products/mad/}} | |||
== Dependencies == | == Dependencies == | ||
| Line 15: | Line 17: | ||
./configure --prefix=/usr && | ./configure --prefix=/usr && | ||
make | make | ||
Create a pkg-config file: | |||
cat > id3tag.pc << "EOF" | |||
prefix=/usr | |||
exec_prefix=${prefix} | |||
libdir=${exec_prefix}/lib | |||
includedir=${prefix}/include | |||
Name: libid3tag | |||
Description: ID3 tag manipulation library | |||
Version: {{Libid3tag-Version}} | |||
Libs: -L${libdir} -lid3tag | |||
Cflags: -I${includedir} | |||
EOF | |||
Install the package | Install the package | ||
make install | make install && | ||
install -v -m644 id3tag.pc /usr/lib/pkgconfig | |||
== Multilib == | == Multilib == | ||
| Line 28: | Line 47: | ||
CC="gcc ${BUILD32}" ./configure --prefix=/usr && | CC="gcc ${BUILD32}" ./configure --prefix=/usr && | ||
make | make | ||
Create a pkg-config file: | |||
cat > id3tag.pc << "EOF" | |||
prefix=/usr | |||
exec_prefix=${prefix} | |||
libdir=${exec_prefix}/lib | |||
includedir=${prefix}/include | |||
Name: libid3tag | |||
Description: ID3 tag manipulation library | |||
Version: {{Libid3tag-Version}} | |||
Libs: -L${libdir} -lid3tag | |||
Cflags: -I${includedir} | |||
EOF | |||
Install the package | Install the package | ||
make install | make install && | ||
install -v -m644 id3tag.pc /usr/lib/pkgconfig | |||
=== N32 === | === N32 === | ||
| Line 39: | Line 75: | ||
CC="gcc ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 && | CC="gcc ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 && | ||
make | make | ||
Create a pkg-config file: | |||
cat > id3tag.pc << "EOF" | |||
prefix=/usr | |||
exec_prefix=${prefix} | |||
libdir=${exec_prefix}/lib32 | |||
includedir=${prefix}/include | |||
Name: libid3tag | |||
Description: ID3 tag manipulation library | |||
Version: {{Libid3tag-Version}} | |||
Libs: -L${libdir} -lid3tag | |||
Cflags: -I${includedir} | |||
EOF | |||
Install the package | Install the package | ||
make install | make install && | ||
install -v -m644 id3tag.pc /usr/lib32/pkgconfig | |||
=== 64Bit === | === 64Bit === | ||
| Line 50: | Line 103: | ||
CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 && | CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 && | ||
make | make | ||
Create a pkg-config file: | |||
cat > id3tag.pc << "EOF" | |||
prefix=/usr | |||
exec_prefix=${prefix} | |||
libdir=${exec_prefix}/lib64 | |||
includedir=${prefix}/include | |||
Name: libid3tag | |||
Description: ID3 tag manipulation library | |||
Version: {{Libid3tag-Version}} | |||
Libs: -L${libdir} -lid3tag | |||
Cflags: -I${includedir} | |||
EOF | |||
Install the package | Install the package | ||
make install | make install && | ||
install -v -m644 id3tag.pc /usr/lib64/pkgconfig | |||
[[Category:Media Libraries]] | |||
Latest revision as of 15:27, 19 March 2009
| Download Source: | http://prdownloads.sourceforge.net/mad/libid3tag-0.15.1b.tar.gz |
|---|
Introduction to Libid3tag
Libid3tag is an ID3 tag manipulation library.
Project Homepage: http://www.underbit.com/products/mad/
Dependencies
Non-Multilib
Compile the package:
./configure --prefix=/usr && make
Create a pkg-config file:
cat > id3tag.pc << "EOF"
prefix=/usr
exec_prefix=${prefix}
libdir=${exec_prefix}/lib
includedir=${prefix}/include
Name: libid3tag
Description: ID3 tag manipulation library
Version: 0.15.1b
Libs: -L${libdir} -lid3tag
Cflags: -I${includedir}
EOF
Install the package
make install && install -v -m644 id3tag.pc /usr/lib/pkgconfig
Multilib
32Bit
Compile the package:
CC="gcc ${BUILD32}" ./configure --prefix=/usr &&
make
Create a pkg-config file:
cat > id3tag.pc << "EOF"
prefix=/usr
exec_prefix=${prefix}
libdir=${exec_prefix}/lib
includedir=${prefix}/include
Name: libid3tag
Description: ID3 tag manipulation library
Version: 0.15.1b
Libs: -L${libdir} -lid3tag
Cflags: -I${includedir}
EOF
Install the package
make install && install -v -m644 id3tag.pc /usr/lib/pkgconfig
N32
Compile the package:
CC="gcc ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 &&
make
Create a pkg-config file:
cat > id3tag.pc << "EOF"
prefix=/usr
exec_prefix=${prefix}
libdir=${exec_prefix}/lib32
includedir=${prefix}/include
Name: libid3tag
Description: ID3 tag manipulation library
Version: 0.15.1b
Libs: -L${libdir} -lid3tag
Cflags: -I${includedir}
EOF
Install the package
make install && install -v -m644 id3tag.pc /usr/lib32/pkgconfig
64Bit
Compile the package:
CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 &&
make
Create a pkg-config file:
cat > id3tag.pc << "EOF"
prefix=/usr
exec_prefix=${prefix}
libdir=${exec_prefix}/lib64
includedir=${prefix}/include
Name: libid3tag
Description: ID3 tag manipulation library
Version: 0.15.1b
Libs: -L${libdir} -lid3tag
Cflags: -I${includedir}
EOF
Install the package
make install && install -v -m644 id3tag.pc /usr/lib64/pkgconfig