increase dvbapp PR.
[vuplus_openembedded] / recipes / opie-unikeyboard / opie-unikeyboard.inc
1 DESCRIPTION = "Unicode input method"
2 SECTION = "opie/inputmethods"
3 PRIORITY = "optional"
4 LICENSE = "GPL"
5 APPNAME = "qunikeyboard"
6
7
8 S = "${WORKDIR}/unikeyboard"
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 if [ -n "$D" ]; then exit 1; fi
25 ${bindir}/qcop QPE/TaskBar "reloadInputMethods()"
26 }
27
28 # FILES plugins/inputmethods/libqunikeyboard.so*
29 do_install() {
30 }
31