SECTION = "libs" PRIORITY = "required" MAINTAINER = "Chris Larson " DEPENDS = "virtual/libc" DESCRIPTION = "libjpeg is a library for handling the JPEG (JFIF) image format." SRC_URI = "http://www.ijg.org/files/jpegsrc.v${PV}.tar.gz \ file://${FILESDIR}/debian.patch;patch=1 \ file://${FILESDIR}/ldflags.patch;patch=1" inherit autotools libtool EXTRA_OECONF="--enable-static --enable-shared" CFLAGS_append = " -D_REENTRANT" do_stage() { install -m 644 -D jconfig.h ${STAGING_INCDIR}/jconfig.h install -m 644 -D jpeglib.h ${STAGING_INCDIR}/jpeglib.h install -m 644 -D jmorecfg.h ${STAGING_INCDIR}/jmorecfg.h install -m 644 -D jerror.h ${STAGING_INCDIR}/jerror.h install -m 644 -D jpegint.h ${STAGING_INCDIR}/jpegint.h oe_soinstall .libs/libjpeg.so.62.0.0 ${STAGING_LIBDIR}/ } do_install() { install -d ${D}/${bindir} ${D}/${includedir} \ ${D}/${mandir}/man1 ${D}/${libdir} oe_runmake 'prefix=${D}/${prefix}' 'exec_prefix=${D}/${exec_prefix}' \ install }