From: Denys Dmytriyenko Date: Thu, 6 May 2010 05:49:20 +0000 (-0400) Subject: am-sysinfo: add AM SysInfo set, currently mem_util only (from Arago) X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=819cd0db4df56c85a6fd91b063133f49476ca926;p=openembedded.git am-sysinfo: add AM SysInfo set, currently mem_util only (from Arago) Signed-off-by: Denys Dmytriyenko --- diff --git a/recipes/ti/am-sysinfo_svn.bb b/recipes/ti/am-sysinfo_svn.bb new file mode 100644 index 0000000000..9193836d71 --- /dev/null +++ b/recipes/ti/am-sysinfo_svn.bb @@ -0,0 +1,22 @@ +DESCRIPTION = "AM SysInfo" +HOMEPAGE = "https://gforge.ti.com/gf/project/am_sysinfo/" +LICENSE = "BSD" +SECTION = "system" +PRIORITY = "optional" + +SRCREV = "2" +PV = "1.0" +PR = "r1+svnr${SRCPV}" + +SRC_URI = "svn://gforge.ti.com/svn/am_sysinfo/;module=trunk;proto=https;user=anonymous;pswd=''" + +S = "${WORKDIR}/trunk" + +do_compile() { + ${CC} ${CFLAGS} ${LDFLAGS} -o mem_util/mem_util mem_util/mem_util.c +} + +do_install() { + install -d ${D}/${bindir} + install -m 0755 ${S}/mem_util/mem_util ${D}/${bindir} +}