diff options
author | Koen Kooi <koen@openembedded.org> | 2009-02-08 13:21:08 +0100 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-02-08 13:21:08 +0100 |
commit | c58d95aff1f74da635b4ad2910df1f40b21bd4ce (patch) | |
tree | 4ef3921f00f4321a82c65b271cda04f397c28624 /packages/ogre | |
parent | 938421a71ef3f11bdfeac4c17ab3fc4d17a5d049 (diff) |
free-image: add 3.11.0
Diffstat (limited to 'packages/ogre')
-rw-r--r-- | packages/ogre/freeimage_3.11.0.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/packages/ogre/freeimage_3.11.0.bb b/packages/ogre/freeimage_3.11.0.bb new file mode 100644 index 0000000000..8281aaf371 --- /dev/null +++ b/packages/ogre/freeimage_3.11.0.bb @@ -0,0 +1,29 @@ +LICENSE = "MIT" + +SRC_URI = "${SOURCEFORGE_MIRROR}/freeimage/FreeImage3110.zip" + +S = "${WORKDIR}/FreeImage/" + +do_configure() { + sed -i -e /^CC/d \ + -e /^CXX\ /d \ + -e /^AR/d \ + -e /^INCDIR\ /d \ + -e /^INSTALLDIR\ /d \ + -e s:'-o root -g root'::g \ + -e /ldconfig/d \ + ${S}/Makefile.gnu +} + +do_install() { + install -d ${D}${libdir} + install -d ${D}${includedir} + oe_runmake INSTALLDIR="${D}${libdir}" INCDIR="${D}${includedir}" install +} + +do_stage() { + install -d ${STAGING_LIBDIR} + install -d ${STAGING_INCDIR} + oe_runmake INSTALLDIR="${STAGING_LIBDIR}" INCDIR="${STAGING_INCDIR}" install +} + |