blob: d90c3e1b8185d4a5e72bdb18104dc50a234faf79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
DESCRIPTION = "Developer Examples for Opie"
SECTION = "opie/base"
PRIORITY = "optional"
DEPENDS = "opie-networksettings"
LICENSE = "GPL"
APPTYPE = "binary"
S = "${WORKDIR}/examples"
inherit opie
do_install() {
install -d ${D}${palmtopdir}/bin/
for i in `find . -perm 0755 -type f`
do
install -m 0755 $i ${D}${palmtopdir}/bin/`basename $i`
done
}
|