blob: 43ff0178d66e9f5b58fbd4d6f350480bf261f9b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
DESCRIPTION = "Daemon to allow scratchbox to use your device as a CPU tranparency target"
HOMEPAGE = "http://scratchbox.org"
LICENSE = "GPLv2"
DEPENDS = "fakeroot"
PR = "r1"
RRECOMMENDS = "kernel-module-nfs"
SRC_URI = "http://scratchbox.org/download/files/sbox-releases/1.0/src/${P}.tar.gz"
do_install() {
install -d ${D}${sbindir}
install -m 755 sbrsh sbrshd sb-exportfs ${D}${sbindir}
install -d ${D}/${sysconfdir}
touch ${D}/${sysconfdir}/sbrshd.conf
}
CONFFILES_${PN} = "${sysconfdir}/sbrshd.conf"
|