scummvm: updated to use make install and install themes, thanks Tilman

This commit is contained in:
Matt Housh 2007-04-08 12:31:39 -05:00
parent 9697af6c1f
commit 52455a0ff9
2 changed files with 17 additions and 6 deletions

View File

@ -1,6 +1,13 @@
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/icons/
-rw-r--r-- root/root usr/share/icons/scummvm.xpm
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/
drwxr-xr-x root/root usr/share/scummvm/themes/
-rw-r--r-- root/root usr/share/scummvm/themes/modern.ini
-rw-r--r-- root/root usr/share/scummvm/themes/modern.zip

View File

@ -5,13 +5,17 @@
name=scummvm
version=0.9.1
release=1
release=2
source=(http://dl.sourceforge.net/sourceforge/$name/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure
./configure --prefix=/usr
make
install -D -m 0755 $name $PKG/usr/bin/$name
install -D -m 0644 icons/$name.xpm $PKG/usr/share/icons/$name.xpm
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
}