19 lines
535 B
Plaintext
19 lines
535 B
Plaintext
# Description: A 'virtual machine' for several classic graphical point-and-click adventure games.
|
|
# URL: http://www.scummvm.org/
|
|
# Maintainer: Daniel Walpole, daniel at walpole dot id dot au
|
|
# Depends on: libsdl, libogg, libmad, zlib, mpeg2dec
|
|
|
|
name=scummvm
|
|
version=0.8.0
|
|
release=1
|
|
source=(http://dl.sourceforge.net/sourceforge/$name/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure
|
|
make
|
|
mkdir -p $PKG/usr/{bin,share/icons}
|
|
install -m 0755 scummvm $PKG/usr/bin/
|
|
install -m 0644 scummvm.xpm $PKG/usr/share/icons
|
|
}
|