[oe-commits] Michael 'Mickey' Lauer : nmon: new recipe; flexible ncurses-based performance monitor

git version control git at git.openembedded.org
Sun May 16 11:25:42 UTC 2010


Module: openembedded.git
Branch: org.openembedded.dev
Commit: 8b933151ce997ab3d2e7d8e18a0d81fae5753f41
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=8b933151ce997ab3d2e7d8e18a0d81fae5753f41

Author: Michael 'Mickey' Lauer <mickey at vanille-media.de>
Date:   Sun May 16 12:38:22 2010 +0200

nmon: new recipe; flexible ncurses-based performance monitor

---

 recipes/nmon/nmon_13g.bb |   22 ++++++++++++++++++++++
 1 files changed, 22 insertions(+), 0 deletions(-)

diff --git a/recipes/nmon/nmon_13g.bb b/recipes/nmon/nmon_13g.bb
new file mode 100644
index 0000000..0aa4095
--- /dev/null
+++ b/recipes/nmon/nmon_13g.bb
@@ -0,0 +1,22 @@
+DESCRIPTION = "nmon performance monitor"
+HOMEPAGE = "http://nmon.sf.net"
+SECTION = "console/utils"
+LICENSE = "GPL"
+DEPENDS = "ncurses"
+
+SRC_URI = "${SOURCEFORGE_MIRROR}/nmon/lmon13g.c"
+
+SRC_URI[md5sum] = "b1b8e6c0123ad232394991f2d4f40494"
+SRC_URI[sha256sum] = "456ab2a342b31d1a352d0d940af5962fa65a12ae8757ff73e6e73210832ae8b5"
+
+CFLAGS += "-D JFS -D GETUSER -Wall -D LARGEMEM"
+LDFLAGS += "-lncurses"
+
+do_compile() {
+	${CC} ${CFLAGS} ${LDFLAGS} ${WORKDIR}/lmon13g.c -o nmon
+}
+
+do_install() {
+	install -d ${D}${bindir}
+	install -m 0755 nmon ${D}${bindir}
+}





More information about the Openembedded-commits mailing list