surpport seeking the recorded video
[vuplus_openembedded] / recipes / opie-wirelessapplet / opie-wirelessapplet.inc
1 DESCRIPTION = "Wireless Applet"
2 SECTION = "opie/applets"
3 PRIORITY = "optional"
4 LICENSE = "GPL"
5 APPNAME = "wirelessapplet"
6
7 EXCLUDE_FROM_WORLD = "1"
8
9 S = "${WORKDIR}/${APPNAME}"
10
11 inherit opie
12
13 pkg_postinst() {
14 #!/bin/sh
15 if [ -n "$D" ]; then exit 1; fi
16 if pidof -s qpe >/dev/null; then
17   /usr/bin/qcop QPE/TaskBar "reloadApplets()"
18 else
19   exit 0
20 fi
21 }
22
23 pkg_postrm() {
24 #!/bin/sh
25 if [ -n "$D" ]; then exit 1; fi
26 /usr/bin/qcop QPE/TaskBar "reloadApplets()"
27 }