aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/pingus/pingus_0.7.2.bb
blob: a10131fa51bbd41672ca86fe646dc40768c1a29b (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
43
44
DESCRIPTION = "Pingus is a free Lemmings clone."
DEPENDS = "virtual/libsdl libsdl-image libsdl-mixer boost libpng"
LICENSE = "GPL"
HOMEPAGE = "http://pingus.seul.org/"
SECTION = "x11/games"
PR = "r1"

ARM_INSTRUCTION_SET = "arm"

inherit scons

SRC_URI = "\
  http://pingus.seul.org/files/pingus-0.7.2.tar.bz2 \
  file://sconstruct.diff;patch=1 \
  file://pingus.desktop \
  file://pingus.png \
  file://pingus-gta012.sh \
"
S = "${WORKDIR}/pingus-${PV}"

do_install() {
	install -d ${D}${bindir}
        install -d ${D}${datadir}/pingus
	install -d ${D}${datadir}/pixmaps
	install -d ${D}${datadir}/applications
	install -m 0644 ${WORKDIR}/pingus.png ${D}${datadir}/pixmaps
	cp -a ${S}/data ${D}/${datadir}/pingus
	install -m 0644 ${WORKDIR}/pingus.desktop ${D}${datadir}/applications

	# specialized start script for OM devices
	if test "${MACHINE}" = om-gta01 || test "${MACHINE}" = om-gta02 ; then
		install -m 0755 ${WORKDIR}/pingus-gta012.sh ${D}${bindir}/pingus
		install -m 0755 ${S}/pingus ${D}${bindir}/pingus.bin
	else
		install -m 0755 ${S}/pingus ${D}${bindir}/pingus
	fi
}

# Account for 1337 script in do_install
PACKAGE_ARCH_om-gta01 = "${MACHINE_ARCH}"
PACKAGE_ARCH_om-gta02 = "${MACHINE_ARCH}"

FILES_${PN} += "${datadir}"