diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-04-27 21:48:22 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-04-27 21:48:22 +0000 |
commit | 17a50aa7b110f2cac57c3b25785bce93986e406a (patch) | |
tree | 93bb340118c41f6bd1bf9db7653e6b8aac61f115 /opie-remote | |
parent | 67b1ca12d25e2461a45674245158f3e270786c12 (diff) |
fix RDEPENDS vs. DEPENDS
BKrev: 408ed526vo3xy9KXTDGtrkyLlre3Lw
Diffstat (limited to 'opie-remote')
-rw-r--r-- | opie-remote/opie-remote_cvs.oe | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/opie-remote/opie-remote_cvs.oe b/opie-remote/opie-remote_cvs.oe index e69de29bb2..3142ea5582 100644 --- a/opie-remote/opie-remote_cvs.oe +++ b/opie-remote/opie-remote_cvs.oe @@ -0,0 +1,25 @@ +DESCRIPTION = "A remote control" +SECTION = "opie/applications" +PRIORITY = "optional" +MAINTAINER = "Open Embedded <oe@handhelds.org>" +LICENSE = "GPL" +RDEPENDS = "lirc" +DEPENDS = " libopiecore2" +PV = "1.1.3-cvs-${CVSDATE}" +APPNAME = "remote" +APPTYPE = "binary" + +SRC_URI = "cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs;module=opie/noncore/tools/remote;date=${CVSDATE} \ + cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs;module=opie/pics;date=${CVSDATE} \ + cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs;module=opie/apps;date=${CVSDATE}" + +S = "${WORKDIR}/${APPNAME}" + +inherit opie + +# FILES bin/remote apps/Applications/remote.desktop pics/remote/*.png +do_install() { + install -d ${D}${palmtopdir}/pics/${APPNAME}/ + install -m 0644 ${WORKDIR}/pics/${APPNAME}/*.png ${D}${palmtopdir}/pics/${APPNAME}/ +} + |