blob: e682a3163d6c117f9d47a4bf9215e58a072686ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
DESCRIPTION = "DGen/SDL is a Sega Genesis/Mega-drive emulator."
DEPENDS = "virtual/libsdl"
SECTION = "x11/games"
LICENSE = "BSD"
SRC_URI = "\
http://pknet.com/~joe/${PN}-${PV}.tar.gz \
file://fix-configure-and-make.patch;patch=1 \
"
inherit autotools
EXTRA_OECONF = " --disable-sdltest --without-x --without-opengl --without-nasm --without-mmx --without-star"
do_compile () {
oe_runmake 'HOSTCC=${BUILD_CC}'
}
|