|
Revision 37, 0.5 kB
(checked in by T0mW, 1 year ago)
|
This adds the starting point to get opie booted up to the ts_calibrate screen.
|
| Line | |
|---|
| 1 |
DESCRIPTION = "System Information dialog for the Opie environment" |
|---|
| 2 |
SECTION = "opie/applications" |
|---|
| 3 |
PRIORITY = "optional" |
|---|
| 4 |
LICENSE = "GPL" |
|---|
| 5 |
APPNAME = "sysinfo" |
|---|
| 6 |
|
|---|
| 7 |
S = "${WORKDIR}/${APPNAME}" |
|---|
| 8 |
|
|---|
| 9 |
inherit opie |
|---|
| 10 |
|
|---|
| 11 |
do_install() { |
|---|
| 12 |
install -d ${D}${palmtopdir}/pics/${APPNAME}/ |
|---|
| 13 |
install -m 0644 ${WORKDIR}/pics/${APPNAME}/*.png ${D}${palmtopdir}/pics/${APPNAME}/ |
|---|
| 14 |
install -d ${D}${palmtopdir}/share/sysinfo/ |
|---|
| 15 |
install -m 0644 ${WORKDIR}/share/sysinfo/results ${D}${palmtopdir}/share/sysinfo/results |
|---|
| 16 |
} |
|---|
| 17 |
|
|---|