From: Philipp Zabel Date: Sat, 18 Aug 2007 11:13:01 +0000 (+0000) Subject: scummvm: use autotools' do_install, improve packaging X-Git-Tag: Release-2010-05/1~8924^2~1 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0b4d85ed076f242708e2a1afa9e49cc7175449e1;p=openembedded.git scummvm: use autotools' do_install, improve packaging --- diff --git a/packages/scummvm/scummvm.inc b/packages/scummvm/scummvm.inc index 28257fab4b..5362a2884f 100644 --- a/packages/scummvm/scummvm.inc +++ b/packages/scummvm/scummvm.inc @@ -11,18 +11,14 @@ EXTRA_OECONF = "--host=${HOST_SYS} \ --backend=sdl \ --with-sdl-prefix=${STAGING_BINDIR_NATIVE}/.. \ --disable-alsa \ + --prefix=${prefix} \ --with-ogg-prefix=${STAGING_LIBDIR}/.. \ --with-vorbis-prefix=${STAGING_LIBDIR}/.. \ --with-mpeg2-prefix=${STAGING_LIBDIR}/.. \ --with-mad-prefix=${STAGING_LIBDIR}/.. " +EXTRA_OEMAKE = "MANDIR=${mandir}" + do_configure() { ./configure ${EXTRA_OECONF} } - - -do_install() { - install -d ${D}${bindir} - install -m 0755 scummvm ${D}${bindir}/scummvm -} -