aboutsummaryrefslogtreecommitdiffstats
path: root/packages/scummvm
diff options
context:
space:
mode:
authorPhilipp Zabel <philipp.zabel@gmail.com>2007-08-18 11:13:01 +0000
committerPhilipp Zabel <philipp.zabel@gmail.com>2007-08-18 11:13:01 +0000
commit0b4d85ed076f242708e2a1afa9e49cc7175449e1 (patch)
tree58a6a9bc6842cd19da7942b9870e587de5c47f2b /packages/scummvm
parent686d71d827a365be3d53dcdf96d3578332128032 (diff)
downloadopenembedded-0b4d85ed076f242708e2a1afa9e49cc7175449e1.tar.gz
scummvm: use autotools' do_install, improve packaging
Diffstat (limited to 'packages/scummvm')
-rw-r--r--packages/scummvm/scummvm.inc10
1 files changed, 3 insertions, 7 deletions
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
-}
-