diff options
author | Marcin Juszkiewicz <hrw@openembedded.org> | 2004-09-16 21:55:04 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2004-09-16 21:55:04 +0000 |
commit | 6fa8a03c85698db5c7df002bee64e3ca8d30e11a (patch) | |
tree | 93d9b86900f287a8c679e1c72e58b3859811b0cd /keyring | |
parent | ac2661d669fda3abcbc96b0caa2e33ac501f2fa0 (diff) |
froot, keyring, konq/e: correct section name to lowercase
BKrev: 414a0bb85d6C4nWDDbuKjC7Qfx9_WQ
Diffstat (limited to 'keyring')
-rw-r--r-- | keyring/keyring_0.6.8.oe | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/keyring/keyring_0.6.8.oe b/keyring/keyring_0.6.8.oe index e69de29bb2..7132dfc0a2 100644 --- a/keyring/keyring_0.6.8.oe +++ b/keyring/keyring_0.6.8.oe @@ -0,0 +1,36 @@ +DESCRIPTION = "Stores accounts and passwords in an encrypted file." +SECTION = "opie/applications" +PRIORITY = "optional" +MAINTAINER = "Robert Anderson <rea@sr.unh.edu>" +LICENSE = "GPL" +DEPENDS = "gdbm" +PR = "r2" + +SRC_URI = "http://www.scrypt.net/~celer/kweb/Keyring-0.6.8.tgz" +S = "${WORKDIR}/Keyring" + +inherit palmtop + +QPEDIR = ${OPIEDIR} + +do_install() { + install -d ${D}/${palmtopdir}/bin \ + ${D}/${palmtopdir}/apps/Applications \ + ${D}/${palmtopdir}/pics/keyring + install -m 0755 keyring ${D}/${palmtopdir}/bin/ + install -m 0644 keyring.desktop \ + ${D}/${palmtopdir}/apps/Applications/ + install -m 0644 ${S}/Keyring.png \ + ${S}/keyring-pwlist.png \ + ${D}/${palmtopdir}/pics/ + + # The following should appear in an assoicated DOC package. + + install -d ${D}/${palmtopdir}/help/html + install -m 0644 ${S}/*.html ${D}/${palmtopdir}/help/html/ +} + +PACKAGES = "${PN} ${PN}-help" +FILES_${PN} = " ${palmtopdir}/bin ${palmtopdir}/apps ${palmtopdir}/pics +FILES_${PN}-help = " ${palmtopdir}/help/html" + |