diff options
Diffstat (limited to 'opie-oxygen/opie-oxygen_1.1.6.oe')
-rw-r--r-- | opie-oxygen/opie-oxygen_1.1.6.oe | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/opie-oxygen/opie-oxygen_1.1.6.oe b/opie-oxygen/opie-oxygen_1.1.6.oe index e69de29bb2..c11716dbbf 100644 --- a/opie-oxygen/opie-oxygen_1.1.6.oe +++ b/opie-oxygen/opie-oxygen_1.1.6.oe @@ -0,0 +1,22 @@ +DESCRIPTION = "Opie Oxygen" +SECTION = "opie/applications" +PRIORITY = "optional" +MAINTAINER = "Team Opie <opie@handhelds.org>" +LICENSE = "GPL" +APPNAME = "oxygen" + +TAG = "${@'v' + oe.data.getVar('PV',d,1).replace('.', '_')}" +SRC_URI = "cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs;tag=${TAG};module=opie/noncore/apps/${APPNAME} \ + cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs;tag=${TAG};module=opie/pics \ + cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs;tag=${TAG};module=opie/share \ + cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs;tag=${TAG};module=opie/apps" +S = "${WORKDIR}/${APPNAME}" + +inherit opie + +do_install() { + install -d ${D}/${palmtopdir}/pics/${APPNAME}/ + install -d ${D}/${palmtopdir}/share/oxygen/ + install -m 0644 ${WORKDIR}/pics/${APPNAME}/*.png ${D}/${palmtopdir}/pics/${APPNAME}/ + install -m 0644 ${WORKDIR}/share/oxygen/*o* ${D}/${palmtopdir}/share/oxygen/ +} |