blob: f78b66ca7fa790c1ca9c941370ce742a6c984a93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
DESCRIPTION = "Python examples for Opie"
SECTION = "opie/base"
PRIORITY = "optional"
MAINTAINER = "Team Opie <opie@handhelds.org>"
LICENSE = "GPL"
RDEPENDS = "python-pyqt opie-pyquicklauncher"
PV = "1.1.6+cvs-${CVSDATE}"
APPNAME = "python"
SRC_URI = "cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs;module=opie/examples/python \
cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs;module=opie/pics \
cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs;module=opie/apps"
S = "${WORKDIR}/${APPNAME}"
inherit opie
do_configure() {
:
}
do_compile() {
:
}
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/
}
|