--- /dev/null
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/scummvm
+drwxr-xr-x root/root usr/man/
+drwxr-xr-x root/root usr/man/man6/
+-rw-r--r-- root/root usr/man/man6/scummvm.6.gz
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/pixmaps/
+-rw-r--r-- root/root usr/share/pixmaps/scummvm.xpm
+drwxr-xr-x root/root usr/share/scummvm/
+-rw-r--r-- root/root usr/share/scummvm/drascula.dat
+-rw-r--r-- root/root usr/share/scummvm/kyra.dat
+-rw-r--r-- root/root usr/share/scummvm/lure.dat
+-rw-r--r-- root/root usr/share/scummvm/pred.dic
+-rw-r--r-- root/root usr/share/scummvm/queen.tbl
+-rw-r--r-- root/root usr/share/scummvm/scummmodern.zip
+-rw-r--r-- root/root usr/share/scummvm/sky.cpt
--- /dev/null
+# Description: Script Creation Utility for Maniac Mansion Virtual Machine
+# URL: http://www.scummvm.org/
+# Packager: Matt Housh jaeger at crux dot nu
+# Maintainer: Thomas Penteker tek at serverop dot de
+# Packager: Matt Housh jaeger at crux dot nu
+# Arch Maintainer: CRUX-ARM System Team, crux-arm at mikeux dot dyndns dot org
+# Depends on: zlib libsdl
+
+name=scummvm
+version=1.0.0
+release=1
+source=(http://dl.sourceforge.net/sourceforge/$name/$name-$version.tar.bz2)
+
+build() {
+ cd $name-$version
+
+ export DEFAULT_LIBS="-L$CLFS/usr/lib"
+ export DEFAULT_CFLAGS="-I$CLFS/usr/include"
+ export SDL_LIBS="$DEFAULT_LIBS -lSDL -lpthread"
+ export SDL_CFLAGS="$DEFAULT_CFLAGS -I$CLFS/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT"
+ export ZLIB_LIBS="$DEFAULT_LIBS"
+ export ZLIB_CFLAGS="$DEFAULT_CFLAGS"
+
+ sed -i ports.mk -e 's|$(INSTALL) -c -s|$(INSTALL)|'
+ ./configure --host=$CTARGET \
+ --prefix=/usr \
+ --mandir=/usr/man \
+ --with-sdl-prefix=$CLFS/usr \
+ --enable-zlib \
+ --enable-sci \
+ --enable-sci32
+
+ make
+ make DESTDIR=$PKG install
+ rm -rf $PKG/usr/share/doc
+}