aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/crimsonfields/crimsonfields_0.4.8.bb
blob: 6e84c465706151d714dcb0394bbc22a4fef0cf53 (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
DESCRIPTION = "Crimson Fields is a tactical war game in the tradition of Battle Isle."
SECTION = "games"
DEPENDS = "crimsonfields-native virtual/libsdl libsdl-mixer libsdl-ttf"
LICENSE = "GPL"
PR = "r0"

SRC_URI = "http://crimson.seul.org/files/crimson-${PV}.tar.bz2 \
           file://native-tools.patch;patch=1"
S = "${WORKDIR}/crimson-${PV}"

inherit autotools

HOST_TOOLS = "cfed mkdatafile mklocale mktileset mkunitset"

do_configure() {
	gnu-configize
	oe_runconf
	for binary in ${HOST_TOOLS}
	do
		install -m 0755 ${STAGING_BINDIR_NATIVE}/$binary tools/
	done
	install -m 0644 ${STAGING_DATADIR_NATIVE}/default.* tools/
}

do_install() {
	autotools_do_install
	install -d ${D}${palmtopdir}/apps/Games/
	install -d ${D}${palmtopdir}/pics/
	install -m 0644 ${D}${datadir}/applications/crimson.desktop ${D}${palmtopdir}/apps/Games/
	install -m 0644 ${D}${datadir}/pixmaps/*.png ${D}${palmtopdir}/pics/
}

FILES_${PN} = "${bindir} ${datadir} ${palmtopdir}"