blob: 9a2e9d1c9343c1bc0cf819cc699e08e4f069fc7d (
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
|
DESCRIPTION = "A Doom Clone based on SDL"
SECTION = "base"
PRIORITY = "optional"
DEPENDS = "virtual/libc libsdl-qpe libsdl-mixer libsdl-net"
SRC_URI = "${SOURCEFORGE_MIRROR}/prboom/prboom-${PV}.tar.gz \
file://${FILESDIR}/m4.patch;patch=1"
inherit autotools libtool
EXTRA_OECONF = "--without-x --disable-sdltest"
do_configure() {
oe_runconf
}
do_install() {
install -d ${D}${palmtopdir}/{bin,apps/Games,pics}
install -m 0755 src/prboom ${D}${palmtopdir}/bin/prboom
install -m 0644 ${FILESDIR}/prboom.png ${D}${palmtopdir}/pics/prboom.png
install -m 0644 ${FILESDIR}/prboom.desktop ${D}${palmtopdir}/Games/prboom.desktop
}
FILES_${PN} = "${palmtopdir}/
|