aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-opie/opie-pickboard/opie-pickboard.inc
blob: 2f8435918d6ff20678a131c4a4ba5c6aff5c4680 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
DESCRIPTION = "Pickboard input method"
SECTION = "opie/inputmethods"
PRIORITY = "optional"
LICENSE = "GPL"
APPNAME = "qpickboard"

S = "${WORKDIR}/pickboard"

inherit opie

pkg_postinst() {
#!/bin/sh
if [ -n "$D" ]; then exit 1; fi
if pidof -s qpe >/dev/null; then
  ${bindir}/qcop QPE/TaskBar "reloadApplets()"
else
  exit 0
fi
}

pkg_postrm() {
#!/bin/sh
if [ -n "$D" ]; then exit 1; fi
${bindir}/qcop QPE/TaskBar "reloadInputMethods()"
}


do_install() {
        install -d ${D}${libdir}/
        install -d ${D}${includedir}/
        install -m 0755 libqpickboard.so ${D}${libdir}/
        install pickboardcfg.h ${D}${includedir}/
        install pickboardpicks.h ${D}${includedir}/
}

# FILES plugins/inputmethods/libqpickboard.so*