aboutsummaryrefslogtreecommitdiffstats
path: root/packages/openmoko-tools/app-restarter_svn.bb
blob: 90ac2b1777ece01204da4e5454bf708950a48a86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
DESCRIPTION = "Small utility to restart a crashing application"
LICENSE = "GPL"

SRC_URI="svn://svn.openmoko.org/developers/zecke/;module=app_restarter;proto=http"
S = "${WORKDIR}/app_restarter"

inherit pkgconfig

do_compile() {
    cd ${S}
    oe_runmake
}

do_install() {
    install -d ${D}/${bindir}
    install -m 0755 ${S}/app_restarter ${D}/${bindir}/${PN}
}