mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 04:17:25 +00:00
d8f7858929
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
23 lines
555 B
BlitzBasic
23 lines
555 B
BlitzBasic
SUMMARY = "smemstat reports the physical memory usage taking into consideration shared memory"
|
|
HOMEPAGE = "https://github.com/ColinIanKing/smemstat"
|
|
LICENSE = "GPL-2.0-or-later"
|
|
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
|
|
|
|
DEPENDS = "ncurses"
|
|
|
|
SRC_URI = "git://github.com/ColinIanKing/smemstat.git;protocol=https;branch=master"
|
|
SRCREV = "72efeb08ccdb22f57054279d25e3c522e8e1d4c3"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit bash-completion
|
|
|
|
do_compile () {
|
|
oe_runmake smemstat
|
|
}
|
|
|
|
do_install () {
|
|
oe_runmake DESTDIR=${D} install
|
|
}
|