contrib/rocksndiamonds/Pkgfile

36 lines
963 B
Plaintext
Raw Normal View History

2006-11-19 22:26:53 +01:00
# Description: Clone of the old BoulderDash and Rockford game.
# URL: http://www.artsoft.org/rocksndiamonds/
2007-01-20 03:21:06 +01:00
# Packager: James Mills, prologic at shortcircuit dot net dot au
# Maintainer: James Mills, prologic at shortcircuit dot net dot au
2006-11-19 22:26:53 +01:00
#
# Depends on: sdl_image, sdl_mixer, sdl_net
2006-11-14 00:01:22 +01:00
name=rocksndiamonds
version=3.1.1
release=2
source=(http://www.artsoft.org/RELEASES/unix/$name/$name-$version.tar.gz)
build () {
2006-11-19 22:26:53 +01:00
cd $name-$version
2006-11-14 00:01:22 +01:00
2006-11-19 22:26:53 +01:00
export RO_GAME_DIR=/usr/share/$name
export RW_GAME_DIR=/var/lib/games/$name
make
2006-11-14 00:01:22 +01:00
2006-11-19 22:26:53 +01:00
install -d \
$PKG/usr/share/$name/{graphics, levels, music, sounds} \
$PKG/var/lib/games/$name
2006-11-14 00:01:22 +01:00
2006-11-19 22:26:53 +01:00
cp -r graphics $PKG/usr/share/$name
cp -r levels $PKG/usr/share/$name
cp -r music $PKG/usr/share/$name
cp -r sounds $PKG/usr/share/$name
2006-11-14 00:01:22 +01:00
2006-11-19 22:26:53 +01:00
cp -r scores $PKG/var/lib/games/$name
install -D -m755 $name $PKG/usr/bin/$name
chown -R root:root $PKG
2006-11-14 00:01:22 +01:00
2006-11-19 22:26:53 +01:00
unset RO_GAME_DIR
unset RW_GAME_DIR
2006-11-14 00:01:22 +01:00
}