diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-04-18 16:02:45 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-04-18 16:02:45 +0000 |
commit | cf369b00d686581900cc984570c8d6b56975fc33 (patch) | |
tree | bb3ce851d665662aa65f7c04230a70b677ea2b0d /opie-helpbrowser | |
parent | d5f0203825fccc4f0bcd5eccce3b6e198e1af87c (diff) |
clean up the various opie packages
please use one of these as template for further packages
opie stuff inherits from opie.oeclass now, we will
take care about quicklaunch/non-quicklaunch there
BKrev: 4082a6a5vfRk3mA_-Or5Ll-U-gXhMw
Diffstat (limited to 'opie-helpbrowser')
-rw-r--r-- | opie-helpbrowser/opie-helpbrowser_cvs.oe | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/opie-helpbrowser/opie-helpbrowser_cvs.oe b/opie-helpbrowser/opie-helpbrowser_cvs.oe index e69de29bb2..565af20a4d 100644 --- a/opie-helpbrowser/opie-helpbrowser_cvs.oe +++ b/opie-helpbrowser/opie-helpbrowser_cvs.oe @@ -0,0 +1,23 @@ +DESCRIPTION = "Opie Help Browser" +SECTION = "opie/applications" +PRIORITY = "optional" +MAINTAINER = "Opie Team <opie@handhelds.org>" +LICENSE = "GPL" +DEPENDS = "virtual/libc libopie2" +PV = "1.1.3-cvs-${CVSDATE}" + +SRC_URI = "cvs://anoncvs:anoncvs@192.58.209.91/cvs;module=opie/core/apps/helpbrowser \ + cvs://anoncvs:anoncvs@192.58.209.91/cvs;module=opie/pics/helpbrowser" + +S = "${WORKDIR}/helpbrowser" + +inherit opie + +do_install() { + install -d ${D}/${palmtopdir}/bin/ + install -d ${D}/${palmtopdir}/pics/ + install -d ${D}/${palmtopdir}/pics/helpbrowser/ + install -m 0755 libhelpbrowser.so* ${D}/${palmtopdir}/plugins/application/ + ln -sf ${D}/${palmtopdir}/bin/quicklaunch ${D}/${palmtopdir}/bin/helpbrowser + install -m 0644 ${WORKDIR}/pics/helpbrowser/*.png ${D}/${palmtopdir}/pics/helpbrowser/ +} |