DESCRIPTION = "A fixed-point Ogg/Vorbis decoder library (aka Tremor)" HOMEPAGE = "http://wiki.xiph.org/index.php/Tremor" LICENSE = "BSD" SECTION = "libs" MAINTAINER = "Sven-Ola Tuecke " CVSDATE = "20070310" SRC_URI = "svn://svn.xiph.org/branches/lowmem-branch;module=Tremor;proto=http" #SRC_URI = "svn://svn.xiph.org/branches/lowmem-no-byte;module=Tremor;proto=http" S = "${WORKDIR}/Tremor" inherit autotools EXTRA_OECONF = "--enable-shared --enable-static --includedir=${STAGING_INCDIR} --libdir=${STAGING_LIBDIR}" do_stage () { install -d 0755 ${STAGING_INCDIR}/tremor install -m 0644 ${S}/ivorbiscodec.h ${STAGING_INCDIR}/tremor install -m 0644 ${S}/ivorbisfile.h ${STAGING_INCDIR}/tremor install -m 0644 ${S}/ogg.h ${STAGING_INCDIR}/tremor install -m 0644 ${S}/os_types.h ${STAGING_INCDIR}/tremor install -m 0644 ${S}/config_types.h ${STAGING_INCDIR}/tremor oe_libinstall -a -so -C .libs libvorbisidec ${STAGING_LIBDIR} } do_install () { install -m 0755 -d ${D}${libdir} oe_libinstall -so -C .libs libvorbisidec ${D}${libdir} }