blob: 181d04b3bdc1a8f750e1cc90da00b2cb7470403e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
SECTION = "unknown"
SRC_URI = "cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs;module=apps/kbdd;date=${PV}"
S = "${WORKDIR}/kbdd"
do_compile() {
oe_runmake
}
do_install() {
install -d ${D}/${bindir}
install -d ${D}/${docdir}/kbdd/
install -m 0755 kbdd ${D}/${bindir}/
install -m 0644 README ${D}/${docdir}/kbdd/
}
|