blob: 10f99bae0ecbedbef295b767c3e80c02d25b604c (
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
45
46
47
48
49
50
|
DESCRIPTION = "Pingus is a free Lemmings clone."
DEPENDS = "virtual/libiconv virtual/libsdl libsdl-image libsdl-mixer boost libpng"
LICENSE = "GPL"
HOMEPAGE = "http://pingus.seul.org/"
SECTION = "x11/games"
PR = "r2"
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://boost.patch;patch=1 \
file://cheader.patch;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
}
do_stage() {
:
}
# Account for 1337 script in do_install
PACKAGE_ARCH_om-gta01 = "${MACHINE_ARCH}"
PACKAGE_ARCH_om-gta02 = "${MACHINE_ARCH}"
FILES_${PN} += "${datadir}"
|