diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-07-29 09:57:10 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-07-29 09:57:10 +0000 |
commit | 45cc5aafe11f2e4c217b440e3f8a68a60bee2f45 (patch) | |
tree | 08fb7a59b1b2a0db5cff4f8befc7a83b177a9736 /mileage | |
parent | 87462d96f54562599bd8b8e528288124e592ddca (diff) |
kill of the reduntant date=${CVSDATE} which is automatically added by the fetcher
BKrev: 4108c9f6NT-ydGGKVYjfoUtsD4BxOQ
Diffstat (limited to 'mileage')
-rw-r--r-- | mileage/mileage_cvs.oe | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/mileage/mileage_cvs.oe b/mileage/mileage_cvs.oe index e69de29bb2..24ac8b7a35 100644 --- a/mileage/mileage_cvs.oe +++ b/mileage/mileage_cvs.oe @@ -0,0 +1,21 @@ +DESCRIPTION = "A Car Mileage Calculator." +HOMEPAGE = "http://mileage.sourceforge.net" +SECTION = "apps" +PRIORITY = "optional" +PV = "4.2.0-cvs-${CVSDATE}" + +SRC_URI = "cvs://anonymous@cvs.sourceforge.net/cvsroot/mileage;module=mileage" +S = "${WORKDIR}/mileage" + +inherit palmtop + +do_install() { + install -d ${D}/${palmtopdir}/apps/Applications/ + install -d ${D}/${palmtopdir}/pics/${PN}/ + install -d ${D}/${palmtopdir}/bin/ + install -m 0755 ${PN} ${D}/${palmtopdir}/bin/ + install -m 0644 ${PN}.desktop ${D}/${palmtopdir}/apps/Applications/ + install -m 0644 ${PN}.png ${D}/${palmtopdir}/pics/${PN}/ +#FIXME: Package and install help files seperatly +} + |