diff options
author | Marcin Juszkiewicz <hrw@openembedded.org> | 2005-01-31 16:34:17 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2005-01-31 16:34:17 +0000 |
commit | a11cf77e07fb9b67dc4154385cb4ca344ffffe64 (patch) | |
tree | 81195f48b92793c1cc9141316441198e7eca2b29 /packages/cumulus | |
parent | 8024de47f263918a464fb0329ef258540d3c1c45 (diff) |
cumulus: added PV, fixed packaging
BKrev: 41fe5e09SyMc40Sw5L8NOEuHTaxWkg
Diffstat (limited to 'packages/cumulus')
-rw-r--r-- | packages/cumulus/cumulus_cvs.bb | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/packages/cumulus/cumulus_cvs.bb b/packages/cumulus/cumulus_cvs.bb index e69de29bb2..0677d0769b 100644 --- a/packages/cumulus/cumulus_cvs.bb +++ b/packages/cumulus/cumulus_cvs.bb @@ -0,0 +1,43 @@ +DESCRIPTION = "A flightcomputer application for Qt/E based Palmtop Environments" +SECTION = "opie/applications" +PRIORITY = "optional" +MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>" +LICENSE = "GPL" +APPTYPE = "binary" +APPNAME = "cumulus" +APPDESKTOP = "${S}" +PV = "1.2+cvs-${CVSDATE}" +PR = "r1" + +SRC_URI = "http://cumulus.kflog.org/download/snapshot/cumulus-snapshot.tbz" +S = "${WORKDIR}/cumulus/cumulus" + +inherit opie + +export OE_QMAKE_LINK="${CXX}" +EXTRA_QMAKEVARS_POST = "INCLUDEPATH+=-I." + +# +# nasty hack since cumulus doesn't obey the qmake standard which requires just one .pro file per directory +# +do_compile() { + echo "#define SHARP_PDA_WARNSOUND 4" >sharp_char.h + qmake -makefile -spec ${QMAKESPEC} -after ${EXTRA_QMAKEVARS_POST} cumulus.pro + oe_runmake + qmake -makefile -spec ${QMAKESPEC} -after ${EXTRA_QMAKEVARS_POST} gpsClient.pro + oe_runmake +} + +do_install() { + install -d ${D}/${palmtopdir}/pics/mapicons \ + ${D}/${palmtopdir}/pics/mapicons/small \ + ${D}/${palmtopdir}/pics/mapicons/windarrows + install -m 0644 ../cumulus.png ${D}/${palmtopdir}/pics/cumulus.png + install -m 0644 map-icons/*.png ${D}/${palmtopdir}/pics/mapicons + install -m 0644 map-icons/*.xpm ${D}/${palmtopdir}/pics/mapicons + install -m 0644 map-icons/small/*.png ${D}/${palmtopdir}/pics/mapicons/small + install -m 0644 map-icons/small/*.xpm ${D}/${palmtopdir}/pics/mapicons/small + install -m 0644 map-icons/windarrows/*.png ${D}/${palmtopdir}/pics/mapicons/windarrows + + install -m 0755 gpsClient ${D}/${palmtopdir}/bin/ +} |