blob: 2ccec3e61c7a74a84c25355f0e4680a5d39fe7b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
DESCRIPTION = "Small utility to restart a crashing application"
LICENSE = "GPL"
DEPENDS = "virtual/libx11"
SRC_URI="svn://svn.openmoko.org/developers/zecke/;module=app_restarter;proto=http"
S = "${WORKDIR}/app_restarter"
SRCREV = "4552"
PV = "1.0+svnr${SRCPV}"
PE = "2"
inherit pkgconfig
do_compile() {
cd ${S}
oe_runmake
}
do_install() {
install -d ${D}/${bindir}
install -m 0755 ${S}/app_restarter ${D}/${bindir}/${PN}
}
|