surpport seeking the recorded video
[vuplus_openembedded] / recipes / opie-jumpx / opie-jumpx.inc
1 DESCRIPTION = "JumpX input method"
2 SECTION = "opie/inputmethods"
3 PRIORITY = "optional"
4 LICENSE = "GPL"
5 APPNAME = "qjumpx"
6
7
8 S = "${WORKDIR}/jumpx"
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 "reloadInputMethods()"
17 else
18   exit 0
19 fi
20
21 }
22
23 pkg_postrm() {
24 #!/bin/sh
25 if [ -n "$D" ]; then exit 1; fi
26 /usr/bin/qcop QPE/TaskBar "reloadInputMethods()"
27 }
28
29 # FILES plugins/inputmethods/libqjumpx.so* pics/jumpx
30 do_install() {
31         install -d ${D}${palmtopdir}/pics/jumpx/
32         install -m 0644 ${WORKDIR}/pics/jumpx/*.png ${D}${palmtopdir}/pics/jumpx/
33 }
34