Libid3tag: 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/mad/libid3tag- | | http://prdownloads.sourceforge.net/mad/libid3tag-{{Libid3tag-Version}}.tar.gz | ||
|} | |} | ||
| Line 30: | Line 30: | ||
Name: libid3tag | Name: libid3tag | ||
Description: ID3 tag manipulation library | Description: ID3 tag manipulation library | ||
Version: | Version: {{Libid3tag-Version}} | ||
Libs: -L${libdir} -lid3tag | Libs: -L${libdir} -lid3tag | ||
| Line 59: | Line 59: | ||
Name: libid3tag | Name: libid3tag | ||
Description: ID3 tag manipulation library | Description: ID3 tag manipulation library | ||
Version: | Version: {{Libid3tag-Version}} | ||
Libs: -L${libdir} -lid3tag | Libs: -L${libdir} -lid3tag | ||
| Line 86: | Line 86: | ||
Name: libid3tag | Name: libid3tag | ||
Description: ID3 tag manipulation library | Description: ID3 tag manipulation library | ||
Version: | Version: {{Libid3tag-Version}} | ||
Libs: -L${libdir} -lid3tag | Libs: -L${libdir} -lid3tag | ||
| Line 113: | Line 113: | ||
Name: libid3tag | Name: libid3tag | ||
Description: ID3 tag manipulation library | Description: ID3 tag manipulation library | ||
Version: | Version: {{Libid3tag-Version}} | ||
Libs: -L${libdir} -lid3tag | Libs: -L${libdir} -lid3tag | ||
Cflags: -I${includedir} | Cflags: -I${includedir} | ||
EOF | EOF | ||
Revision as of 17:32, 17 December 2006
| Download Source: | http://prdownloads.sourceforge.net/mad/libid3tag-0.15.1b.tar.gz |
|---|
Dependencies
Non-Multilib
Compile the package:
./configure --prefix=/usr && make
Install the package
make install
Create a pkg-config file:
cat > /usr/lib/pkgconfig/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
Multilib
32Bit
Compile the package:
CC="gcc ${BUILD32}" ./configure --prefix=/usr &&
make
Install the package
make install
Create a pkg-config file:
cat > /usr/lib/pkgconfig/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
N32
Compile the package:
CC="gcc ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 &&
make
Install the package
make install
Create a pkg-config file:
cat > /usr/lib32/pkgconfig/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
64Bit
Compile the package:
CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 &&
make
Install the package
make install
Create a pkg-config file:
cat > /usr/lib64/pkgconfig/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