blob: 2bf8ebfd3574b2d85ab6765e13ea0b5a07f43df9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
DESCRIPTION = "Developer Examples for Opie"
SECTION = "opie/base"
PRIORITY = "optional"
MAINTAINER = "Team Opie <opie@handhelds.org>"
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
}
|