blob: 84ed03d43c9ab8ba9b313b7a55820cbe9e0d2844 (
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
32
33
34
35
36
37
38
39
40
41
42
|
DESCRIPTION = "A matrix Game, Qt/Embedded based Palmtop Environments Edition"
MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>"
SECTION = "opie/games"
LICENSE = "GPL"
PRIORITY = "optional"
PR = "r2"
SRC_URI = "http://www.geocities.co.jp/SiliconValley-Oakland/8074/src/qmatrix-${PV}.tar.gz"
S = "${WORKDIR}/qmatrix"
inherit palmtop
MACHTYPE = "sl300"
MACHTYPE_c7x0 = "sl700"
MACHTYPE_tosa = "sl700"
do_configure_append() {
ln -v -f -s config/config-${MACHTYPE}.h config.h
ln -v -f -s config/config.mk-${MACHTYPE} config.mk
if [ "${MACHTYPE}" = "sl300" ]
then
ln -vfs bigFishSize.h areaSize.h
else
ln -vfs smallFishSize.h areaSize.h
fi
ln -v -f -s HiScoreRegConfig-${MACHTYPE}.h HiScoreRegConfig.h
}
do_compile_prepend() {
cd images && oe_runmake && cd ${S}
}
do_install() {
install -d ${D}${palmtopdir}/apps/Games
install -m 0644 desktop/qmatrix-${MACHTYPE}.desktop ${D}${palmtopdir}/apps/Games/qmatrix.desktop
install -d ${D}${palmtopdir}/bin
install -m 0755 qmatrix ${D}${palmtopdir}/bin/qmatrix
install -d ${D}${palmtopdir}/pics
install -m 0644 desktop/qmatrix.png ${D}${palmtopdir}/pics/
install -d ${D}${palmtopdir}/help/html/
install -m 0644 desktop/qmatrix.html ${D}${palmtopdir}/help/html/qmatrix.html
}
|