summaryrefslogtreecommitdiffstats
path: root/recipes-devtools/suspendresume/suspendresume_git.bb
blob: 2332b06f0c628545553ddc657074a2121e859767 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
SUMMARY = "Suspend/Resume performance tool"
DESCRIPTION = "Linux tool to measure kernel activity between suspend and resume"
HOMEPAGE = "http://01.org/suspendresume/"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=12f884d2ae1ff87c09e5b7ccc2c4ca7e"
SECTION = "tests"

SRC_URI = "git://github.com/01org/suspendresume.git"
SRCREV = "f02305b59f9ae6ca700b9e86c27aa883e6743b32"
S = "${WORKDIR}/git"

RDEPENDS_${PN} = "python"

do_compile() {
	:
}

do_install() {
	install -d ${D}${bindir}
	install -m 0755 analyze_boot.py ${D}${bindir}
	install -m 0755 analyze_suspend.py ${D}${bindir}
}