blob: 0e8b6bfdea823fa901145c8fb645ce2f8f537cac (
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
|
DESCRIPTION = "A Doom Clone based on SDL"
SECTION = "base"
PRIORITY = "optional"
RDEPENDS = "libc6 libsdl-qpe libsdl-mixer libsdl-net"
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}apps/Games/prboom.desktop
}
FILES_${PN} = "${palmtopdir}
|