22 lines
549 B
Plaintext
22 lines
549 B
Plaintext
# Description: Script Creation Utility for Maniac Mansion Virtual Machine
|
|
# URL: http://www.scummvm.org/
|
|
# Maintainer: Matt Housh, jaeger at crux dot nu
|
|
# Depends on: libsdl, libogg, libmad, zlib, mpeg2dec, flac
|
|
|
|
name=scummvm
|
|
version=0.9.1
|
|
release=2
|
|
source=(http://dl.sourceforge.net/sourceforge/$name/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
install -d $PKG/usr/share/scummvm/themes
|
|
install -m 0644 gui/themes/* $PKG/usr/share/scummvm/themes
|
|
|
|
rm -rf $PKG/usr/share/doc
|
|
}
|