blob: 61b68b51733bd38402811614e25e8a8ed4df0638 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
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"
PV = "1.0+svnr${SRCREV}"
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}
}
|