]> pilppa.org Git - familiar-h63xx-build.git/blob - org.handhelds.familiar/packages/scummvm/scummvm.inc
OE tree imported from monotone branch org.openembedded.oz354fam083 at revision 8b12e3...
[familiar-h63xx-build.git] / org.handhelds.familiar / packages / scummvm / scummvm.inc
1 DESCRIPTION = "Virtual Machine for LucasArts Adventures for Qt/Embedded based palmtop environments w/ SDL."
2 SECTION = "games"
3 PRIORITY = "optional"
4 LICENSE = "GPL"
5
6 SRC_URI = "${SOURCEFORGE_MIRROR}/scummvm/scummvm-${PV}.tar.bz2 \
7                         file://tremor.patch;patch=1"
8
9 inherit autotools 
10
11 EXTRA_OECONF = "--host=${HOST_SYS} \
12                 --backend=sdl \
13                 --with-sdl-prefix=${STAGING_BINDIR}/.. \
14                 --disable-alsa \
15                 --with-ogg-prefix=${STAGING_LIBDIR}/.. \
16                 --with-vorbis-prefix=${STAGING_LIBDIR}/.. \
17                 --with-mpeg2-prefix=${STAGING_LIBDIR}/.. \
18                 --with-mad-prefix=${STAGING_LIBDIR}/.. "
19
20 do_configure() {
21         ./configure ${EXTRA_OECONF}
22 }
23
24
25 do_install() {
26         install -d ${D}${bindir}
27         install -m 0755 scummvm ${D}${bindir}/scummvm
28 }
29