diff options
author | Marcin Juszkiewicz <hrw@openembedded.org> | 2006-01-09 19:15:30 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-01-09 19:15:30 +0000 |
commit | a0bc3b7972aafc38c3bfb3045896c01c5ae05e8d (patch) | |
tree | 1f61934fb86bc0a4028f12843d158e92889e7ac5 /packages/opie-examples-python/opie-examples-python.inc | |
parent | ce0af9851e5a2231b9ed9fcfecfd10cc4b7794c3 (diff) |
opie-examples-python: few fixes
- corrected dependency on opie-pyquicklaunchapplet
- set PACKAGE_ARCH to all as it contain only Python script
- there is only one example - do not package .desktop files for other
Diffstat (limited to 'packages/opie-examples-python/opie-examples-python.inc')
-rw-r--r-- | packages/opie-examples-python/opie-examples-python.inc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/packages/opie-examples-python/opie-examples-python.inc b/packages/opie-examples-python/opie-examples-python.inc index ae84c3dfd7..060f8b12c8 100644 --- a/packages/opie-examples-python/opie-examples-python.inc +++ b/packages/opie-examples-python/opie-examples-python.inc @@ -3,8 +3,9 @@ SECTION = "opie/base" PRIORITY = "optional" MAINTAINER = "Team Opie <opie@handhelds.org>" LICENSE = "GPL" -RDEPENDS = "python-pyqt opie-pyquicklauncher" +RDEPENDS = "python-pyqt opie-pyquicklaunchapplet" APPNAME = "python" +PACKAGE_ARCH = "all" S = "${WORKDIR}/${APPNAME}" @@ -22,6 +23,6 @@ do_install() { install -d ${D}${palmtopdir}/bin/python/ ${D}${palmtopdir}/apps/Python install -m 0755 *.py ${D}${palmtopdir}/bin/python/ install -m 0644 ${WORKDIR}/apps/Python/.directory ${D}${palmtopdir}/apps/Python/ - install -m 0644 ${WORKDIR}/apps/Python/*.desktop ${D}${palmtopdir}/apps/Python/ + install -m 0644 ${WORKDIR}/apps/Python/simple.desktop ${D}${palmtopdir}/apps/Python/ } |