Difference between revisions of "Libid3tag"
From CBLFS
Jump to navigationJump to search(4 intermediate revisions by 3 users not shown) | |||
Line 6: | Line 6: | ||
---- | ---- | ||
+ | |||
+ | {{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: | Create a pkg-config file: | ||
− | cat > | + | cat > id3tag.pc << "EOF" |
prefix=/usr | prefix=/usr | ||
exec_prefix=${prefix} | exec_prefix=${prefix} | ||
Line 33: | Line 31: | ||
Libs: -L${libdir} -lid3tag | Libs: -L${libdir} -lid3tag | ||
− | Cflags: -I${includedir} | + | Cflags: -I${includedir} |
EOF | EOF | ||
+ | |||
+ | Install the package | ||
+ | |||
+ | make install && | ||
+ | install -v -m644 id3tag.pc /usr/lib/pkgconfig | ||
== Multilib == | == Multilib == | ||
Line 44: | Line 47: | ||
CC="gcc ${BUILD32}" ./configure --prefix=/usr && | CC="gcc ${BUILD32}" ./configure --prefix=/usr && | ||
make | make | ||
− | |||
− | |||
− | |||
− | |||
Create a pkg-config file: | Create a pkg-config file: | ||
− | cat > | + | cat > id3tag.pc << "EOF" |
prefix=/usr | prefix=/usr | ||
exec_prefix=${prefix} | exec_prefix=${prefix} | ||
Line 62: | Line 61: | ||
Libs: -L${libdir} -lid3tag | Libs: -L${libdir} -lid3tag | ||
− | Cflags: -I${includedir} | + | Cflags: -I${includedir} |
EOF | EOF | ||
+ | |||
+ | Install the package | ||
+ | |||
+ | make install && | ||
+ | install -v -m644 id3tag.pc /usr/lib/pkgconfig | ||
=== N32 === | === N32 === | ||
Line 71: | 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: | Create a pkg-config file: | ||
− | cat > | + | cat > id3tag.pc << "EOF" |
prefix=/usr | prefix=/usr | ||
exec_prefix=${prefix} | exec_prefix=${prefix} | ||
Line 89: | Line 89: | ||
Libs: -L${libdir} -lid3tag | Libs: -L${libdir} -lid3tag | ||
− | Cflags: -I${includedir} | + | Cflags: -I${includedir} |
EOF | EOF | ||
+ | |||
+ | Install the package | ||
+ | |||
+ | make install && | ||
+ | install -v -m644 id3tag.pc /usr/lib32/pkgconfig | ||
=== 64Bit === | === 64Bit === | ||
Line 98: | 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: | Create a pkg-config file: | ||
− | cat > | + | cat > id3tag.pc << "EOF" |
prefix=/usr | prefix=/usr | ||
exec_prefix=${prefix} | exec_prefix=${prefix} | ||
Line 116: | Line 117: | ||
Libs: -L${libdir} -lid3tag | Libs: -L${libdir} -lid3tag | ||
− | Cflags: -I${includedir} | + | Cflags: -I${includedir} |
EOF | EOF | ||
+ | |||
+ | Install the package | ||
+ | |||
+ | 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 |
---|
Contents
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