diff options
author | Michael Lauer <mickey@vanille-media.de> | 2008-07-25 06:19:05 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2008-07-25 06:19:05 +0000 |
commit | 0f7269fa12495ec159b60255aaed5066e85ff016 (patch) | |
tree | 637a04e39d876dfb245d9013fc554dd11dd454f3 /packages/dmalloc/dmalloc_5.5.2.bb | |
parent | 19e952fdd6ab8e75afce96ab9879b5e019640b44 (diff) |
add (hacky) version of dmalloc
Diffstat (limited to 'packages/dmalloc/dmalloc_5.5.2.bb')
-rw-r--r-- | packages/dmalloc/dmalloc_5.5.2.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/packages/dmalloc/dmalloc_5.5.2.bb b/packages/dmalloc/dmalloc_5.5.2.bb new file mode 100644 index 0000000000..c91152b537 --- /dev/null +++ b/packages/dmalloc/dmalloc_5.5.2.bb @@ -0,0 +1,25 @@ +DESCRIPTION = "Debug Malloc Library" +SECTION = "libs/devel" +HOMEPAGE = "http://dmalloc.com" +LICENSE = "CCSA" + +SRC_URI = "\ + http://dmalloc.com/releases/dmalloc-${PV}.tgz \ + file://configure-pagesize-HACK.patch;patch=1 \ +# HACK we ship a preconfigured conf.h since otherwise it misses a whole lot of stuff and compilation fails. +# TODO find out why and get rid of it + file://conf.h \ +" +inherit autotools pkgconfig + +do_configure_append() { + install -m 0644 ${WORKDIR}/conf.h ${S} +} + +do_stage() { + oe_libinstall -a libdmalloc ${STAGING_LIBDIR} +} + +do_install() { + : +} |