Merge branch 'vuplus-1.6k' of code.vuplus.com:/opt/repository/openembedded into vuplu...
[vuplus_openembedded] / recipes / opie-notesapplet / opie-notesapplet.inc
1 DESCRIPTION = "Notes Applet"
2 SECTION = "opie/applets"
3 PRIORITY = "optional"
4 LICENSE = "GPL"
5 APPNAME = "notesapplet"
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   /usr/bin/qcop QPE/TaskBar "reloadApplets()"
17 else
18   exit 0
19 fi
20 }
21
22 pkg_postrm() {
23 #!/bin/sh
24 if [ -n "$D" ]; then exit 1; fi
25 /usr/bin/qcop QPE/TaskBar "reloadApplets()"
26 }
27
28 # FILES plugins/applets/libnotesapplet.so*
29 do_install() {
30 }
31