blob: 4a4dc3b7d4efad1d332f7ee6b5267f61deb99541 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
DESCRIPTION = "gsm 07.10 muxer userspace daemon"
HOMEPAGE = "http://www.freesmartphone.org"
AUTHOR = "M. Dietrich"
SECTION = "console/network"
DEPENDS = "intltool-native dbus"
LICENSE = "GPL"
PV = "0.0+svnr${SRCREV}"
PR = "r0"
SRC_URI = "svn://projects.linuxtogo.org/svn/smartphones/trunk/software;module=gsm0710muxd"
S = "${WORKDIR}/gsm0710muxd"
inherit autotools
pkg_postinst_${PN}() {
# can't do this offline
if [ "x$D" != "x" ]; then
exit 1
fi
# reload dbus configuration files
for i in `pidof dbus-daemon`; do
kill -SIGHUP $i
done
}
FILES_${PN} += "${datadir}"
|