blob: 638a39e7fd16e73c41994b5e61d24f353ba117ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require scummvm.inc
DEPENDS = "virtual/libsdl tremor libogg zlib \
${@base_conditional('ENTERPRISE_DISTRO', '1', '', 'libmad mpeg2dec', d)}"
SRC_URI += " file://mouse.patch;patch=1 \
file://gcc-4.x.x-accept.patch;patch=1 \
file://sh3-linux-new-arch.patch;patch=1 \
file://tail-obselete-fix.patch;patch=1 \
file://tremor.patch;patch=1"
do_compile() {
oe_runmake CC="${CC}" CXX="${CXX}" CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" LDFLAGS="${LDFLAGS} -lmpeg2" \
DEFINES="-DUNIX -DSCUMM_NEED_ALIGNMENT -DUSE_MAD -DUSE_VORBIS -DUSE_ZLIB -DUSE_MPEG2"
}
|