blob: 098f293b2ebdc78371955ba2f34392ec88d219e9 (
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
|
DESCRIPTION = "Game engine to run Red Alert 1"
LICENSE = "GPLv2"
DEPENDS = "virtual/libsdl libsdl-mixer"
SRC_URI = "http://openredalert.googlecode.com/files/openredalert-${PV}-src.tar.gz \
file://gcc43-fix.patch;patch=1 \
file://openredalert-launcher"
PR = "r1"
S = "${WORKDIR}"
CFLAGS_append = " -I. -I${STAGING_INCDIR}"
do_compile() {
cd ${S}/src ; cp ${S}/makefile .
oe_runmake -e
}
do_install() {
install -d ${D}/${datadir}/games/redalert/
cp -pPr ${S}/data ${D}/${datadir}/games/redalert/
install -m 0755 ${S}/src/openredalert ${D}/${datadir}/games/redalert/
install -d ${D}/${bindir}
install -m 0755 ${S}/openredalert-launcher ${D}/${bindir}
}
FILES_${PN} += "${datadir}/games/redalert/"
FILES_${PN}-dbg += "${datadir}/games/redalert/.debug"
|