CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
scummvm: initial import (verified compilation)
authorJose V Beneyto <sepen@crux.nu>
Tue, 29 Dec 2009 16:34:12 +0000 (17:34 +0100)
committerJose V Beneyto <sepen@crux.nu>
Tue, 29 Dec 2009 16:34:12 +0000 (17:34 +0100)
scummvm/.footprint [new file with mode: 0644]
scummvm/.md5sum [new file with mode: 0644]
scummvm/Pkgfile [new file with mode: 0644]

diff --git a/scummvm/.footprint b/scummvm/.footprint
new file mode 100644 (file)
index 0000000..a59f669
--- /dev/null
@@ -0,0 +1,17 @@
+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
diff --git a/scummvm/.md5sum b/scummvm/.md5sum
new file mode 100644 (file)
index 0000000..30e45b4
--- /dev/null
@@ -0,0 +1 @@
+11b911937e0fc73c94a7bdc374ab617c  scummvm-1.0.0.tar.bz2
diff --git a/scummvm/Pkgfile b/scummvm/Pkgfile
new file mode 100644 (file)
index 0000000..2c299df
--- /dev/null
@@ -0,0 +1,36 @@
+# 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
+}