aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-opie/opie-examples/opie-examples.inc
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-opie/opie-examples/opie-examples.inc')
-rw-r--r--recipes-opie/opie-examples/opie-examples.inc20
1 files changed, 20 insertions, 0 deletions
diff --git a/recipes-opie/opie-examples/opie-examples.inc b/recipes-opie/opie-examples/opie-examples.inc
new file mode 100644
index 0000000..d90c3e1
--- /dev/null
+++ b/recipes-opie/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
+}
+