DESCRIPTION = "Wireless Applet" SECTION = "opie/applets" PRIORITY = "optional" LICENSE = "GPL" APPNAME = "wirelessapplet" EXCLUDE_FROM_WORLD = "1" S = "${WORKDIR}/${APPNAME}" inherit opie pkg_postinst() { #!/bin/sh if [ -n "$D" ]; then exit 1; fi if pidof -s qpe >/dev/null; then /usr/bin/qcop QPE/TaskBar "reloadApplets()" else exit 0 fi } pkg_postrm() { #!/bin/sh if [ -n "$D" ]; then exit 1; fi /usr/bin/qcop QPE/TaskBar "reloadApplets()" }