mirror of
https://git.yoctoproject.org/poky
synced 2026-06-02 13:29:49 +00:00
libid3tag: add pkg-config support (from Debian)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3467 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
@@ -0,0 +1,11 @@
|
|||||||
|
prefix=/usr
|
||||||
|
exec_prefix=${prefix}
|
||||||
|
libdir=${exec_prefix}/lib
|
||||||
|
includedir=${prefix}/include
|
||||||
|
|
||||||
|
Name: id3tag
|
||||||
|
Description: ID3 tag reading library
|
||||||
|
Requires:
|
||||||
|
Version: 0.15.0b
|
||||||
|
Libs: -L${libdir} -lid3tag -lz
|
||||||
|
Cflags: -I${includedir}
|
||||||
@@ -3,14 +3,20 @@ PRIORITY = "optional"
|
|||||||
DEPENDS = "zlib"
|
DEPENDS = "zlib"
|
||||||
DESCRIPTION = "Library for interacting with ID3 tags."
|
DESCRIPTION = "Library for interacting with ID3 tags."
|
||||||
LICENSE = "GPL"
|
LICENSE = "GPL"
|
||||||
|
PR = "r1"
|
||||||
|
|
||||||
|
SRC_URI = "ftp://ftp.mars.org/pub/mpeg/libid3tag-${PV}.tar.gz \
|
||||||
|
file://id3tag.pc"
|
||||||
|
|
||||||
SRC_URI = "${SOURCEFORGE_MIRROR}/mad/libid3tag-${PV}.tar.gz"
|
|
||||||
S = "${WORKDIR}/libid3tag-${PV}"
|
S = "${WORKDIR}/libid3tag-${PV}"
|
||||||
|
|
||||||
inherit autotools
|
inherit autotools pkgconfig
|
||||||
|
|
||||||
EXTRA_OECONF = "-enable-speed"
|
EXTRA_OECONF = "-enable-speed"
|
||||||
|
|
||||||
|
do_configure_prepend() {
|
||||||
|
install -m 0644 ${WORKDIR}/id3tag.pc ${S}
|
||||||
|
}
|
||||||
do_stage() {
|
do_stage() {
|
||||||
oe_libinstall -so libid3tag ${STAGING_LIBDIR}
|
oe_libinstall -so libid3tag ${STAGING_LIBDIR}
|
||||||
install -m 0644 id3tag.h ${STAGING_INCDIR}
|
install -m 0644 id3tag.h ${STAGING_INCDIR}
|
||||||
|
|||||||
Reference in New Issue
Block a user