summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-oe/recipes-devtools/smemstat/smemstat_0.02.11.bb22
1 files changed, 22 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/smemstat/smemstat_0.02.11.bb b/meta-oe/recipes-devtools/smemstat/smemstat_0.02.11.bb
new file mode 100644
index 0000000000..21f315b1c2
--- /dev/null
+++ b/meta-oe/recipes-devtools/smemstat/smemstat_0.02.11.bb
@@ -0,0 +1,22 @@
1SUMMARY = "smemstat reports the physical memory usage taking into consideration shared memory"
2HOMEPAGE = "https://github.com/ColinIanKing/smemstat"
3LICENSE = "GPL-2.0-or-later"
4
5LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
6
7DEPENDS = "ncurses"
8
9SRC_URI = "git://github.com/ColinIanKing/smemstat.git;protocol=https;branch=master"
10SRCREV = "9eea7504ab33783d804c4ed9237e299effb68874"
11
12S = "${WORKDIR}/git"
13
14inherit bash-completion
15
16do_compile () {
17 oe_runmake smemstat
18}
19
20do_install () {
21 oe_runmake DESTDIR=${D} install
22}