diff options
author | Marcin Juszkiewicz <hrw@openembedded.org> | 2004-11-20 01:21:42 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2004-11-20 01:21:42 +0000 |
commit | 1b9486446c85543c2a90469122ed79c98e6af9f0 (patch) | |
tree | 4595c398302e934af7eefd4c71813f4352b1388a /id3lib | |
parent | 7920d89da403b3231d3c9e29286043dda9560cae (diff) |
Merge bk://openembedded@openembedded.bkbits.net/packages-devel
into home.hrw.one.pl:/home/hrw/zaurus/oe/packages
2004/11/20 02:20:47+01:00 hrw.one.pl!hrw
added license to some packages
BKrev: 419e9c26J8jBCbLq5erARzIY4dhVHA
Diffstat (limited to 'id3lib')
-rw-r--r-- | id3lib/id3lib_3.8.3.oe | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/id3lib/id3lib_3.8.3.oe b/id3lib/id3lib_3.8.3.oe index e69de29bb2..6062b2711e 100644 --- a/id3lib/id3lib_3.8.3.oe +++ b/id3lib/id3lib_3.8.3.oe @@ -0,0 +1,23 @@ +DESCRIPTION = "Library for interacting with ID3 tags." +SECTION = "libs" +PRIORITY = "optional" +MAINTAINER = "jason haslup <openembedded@haslup.com>" +DEPENDS = "zlib" +DESCRIPTION = "Library for interacting with ID3 tags." +LICENSE = "GPL" + +inherit autotools + +SRC_URI = "${SOURCEFORGE_MIRROR}/id3lib/id3lib-${PV}.tar.gz" +S = "${WORKDIR}/id3lib-${PV}" + +do_configure() { + oe_runconf +} + +do_stage() { + oe_libinstall -a -so -C src libid3 ${STAGING_LIBDIR} + install -m 0644 include/id3.h ${STAGING_INCDIR} + install -d ${STAGING_INCDIR}/id3/ + install -m 0644 include/id3/*.h ${STAGING_INCDIR}/id3/ +} |