bluez: Add 4.62 and update include to support new style checksums for the archive.
[openembedded.git] / recipes / opie-batteryapplet / opie-batteryapplet.inc
1 DESCRIPTION = "Battery Monitor applet"
2 SECTION = "opie/applets"
3 PRIORITY = "optional"
4 LICENSE = "GPL"
5 APPNAME = "batteryapplet"
6
7
8 S = "${WORKDIR}/${APPNAME}"
9
10 inherit opie
11
12 pkg_postinst() {
13 #!/bin/sh
14 if [ -n "$D" ]; then exit 1; fi
15 if pidof -s qpe >/dev/null; then
16   ${bindir}/qcop QPE/TaskBar "reloadApplets()"
17 else
18   exit 0
19 fi
20 }
21
22 pkg_postrm() {
23 #!/bin/sh
24 ${bindir}/qcop QPE/TaskBar "reloadApplets()"
25  if [ -n "$D" ]; then false; fi
26 }
27
28 # FILES plugins/applets/libbatteryapplet.so*
29 do_install() {
30 }
31