From: Holger Hans Peter Freyther Date: Mon, 11 Jan 2010 20:23:41 +0000 (+0100) Subject: memusagestat_2.11.bb: Add memusagestat X-Git-Tag: Release-2010-05/1~898^2~4 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3b6c02e9864b9fe72bb4e360a72c8199a0218774;p=openembedded.git memusagestat_2.11.bb: Add memusagestat This is a small tool that can turn the memory trace of glibc into a nice graph. --- diff --git a/recipes/memusagestat/memusagestat_2.11.bb b/recipes/memusagestat/memusagestat_2.11.bb new file mode 100644 index 0000000000..56afaced9e --- /dev/null +++ b/recipes/memusagestat/memusagestat_2.11.bb @@ -0,0 +1,19 @@ +LICENSE = "GPL" +DESCRIPTION = "Generate graphic from memory profiling data" + +DEPENDS = "gd" +SRC_URI = "http://www.secretlabs.de/memusagestat.c;name=tarball" + +SRC_URI[tarball.md5sum] = "981a7f34d891dfd2e4696354d284a328" +SRC_URI[tarball.sha256sum] = "b4c0a9353cffa57c5af5fc304b3cc322ca3a0ff78149471f6cf5d5c249054b49" + +S = "${WORKDIR}" + +do_compile() { + ${CC} -o memusagestat memusagestat.c ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} -lgd +} + +do_install() { + install -d ${D}${bindir} + install -m 0755 memusagestat ${D}/${bindir} +}