DESCRIPTION = "Notes Applet" SECTION = "opie/applets" PRIORITY = "optional" MAINTAINER = "Team Opie " LICENSE = "GPL" APPNAME = "notesapplet" S = "${WORKDIR}/${APPNAME}" inherit opie pkg_postinst() { #!/bin/sh if [ -n "$D" ]; then exit 1; fi if pidof -s qpe >/dev/null; then /opt/QtPalmtop/bin/qcop QPE/TaskBar "reloadApplets()" else exit 0 fi } pkg_postrm() { #!/bin/sh if [ -n "$D" ]; then exit 1; fi /opt/QtPalmtop/bin/qcop QPE/TaskBar "reloadApplets()" } # FILES plugins/applets/libnotesapplet.so* do_install() { }