diff options
Diffstat (limited to 'recipes/opie-examples/opie-examples.inc')
-rw-r--r-- | recipes/opie-examples/opie-examples.inc | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/recipes/opie-examples/opie-examples.inc b/recipes/opie-examples/opie-examples.inc new file mode 100644 index 0000000000..d90c3e1b81 --- /dev/null +++ b/recipes/opie-examples/opie-examples.inc @@ -0,0 +1,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 +} + |