39 lines
1.2 KiB
Plaintext
Raw Normal View History

2006-11-20 07:26:53 +10:00
# Description: Clone of the old BoulderDash and Rockford game.
2020-06-01 15:45:48 +00:00
# URL: https://www.artsoft.org/rocksndiamonds/
2014-11-10 23:28:07 +11:00
# Maintainer: Danny Rawlins, crux at romster dot me
2020-06-08 17:48:52 +00:00
# Depends on: sdl2_image sdl2_mixer sdl2_net
2006-11-14 09:01:22 +10:00
name=rocksndiamonds
2022-07-16 13:33:05 +02:00
version=4.3.2.1
2008-03-17 02:59:56 +11:00
release=1
2020-12-27 18:55:35 +11:00
source=(https://www.artsoft.org/RELEASES/unix/rocksndiamonds/$name-$version.tar.gz
rocksndiamonds.desktop)
2006-11-14 09:01:22 +10:00
2008-03-17 02:59:56 +11:00
build() {
2020-12-27 18:55:35 +11:00
cd $name-$version
2006-11-14 09:01:22 +10:00
2020-12-27 18:55:35 +11:00
make \
RO_GAME_DIR='/usr/share/rocksndiamonds' \
RW_GAME_DIR='/var/lib/games/rocksndiamonds' \
EXTRA_CFLAGS="$CFLAGS" \
EXTRA_LDFLAGS="$LDFLAGS"
2006-11-14 09:01:22 +10:00
2008-03-17 02:59:56 +11:00
install -d \
$PKG/usr/share/rocksndiamonds/graphics \
$PKG/usr/share/rocksndiamonds/levels \
$PKG/usr/share/rocksndiamonds/music \
$PKG/usr/share/rocksndiamonds/sounds \
$PKG/var/lib/games/rocksndiamonds
2006-11-14 09:01:22 +10:00
2008-03-17 02:59:56 +11:00
cp -r graphics $PKG/usr/share/rocksndiamonds
cp -r levels $PKG/usr/share/rocksndiamonds
cp -r music $PKG/usr/share/rocksndiamonds
cp -r sounds $PKG/usr/share/rocksndiamonds
2006-11-14 09:01:22 +10:00
2020-06-08 17:48:52 +00:00
#cp -r scores $PKG/var/lib/games/rocksndiamonds
2008-03-17 02:59:56 +11:00
install -D -m 0755 rocksndiamonds $PKG/usr/bin/rocksndiamonds
2020-12-27 18:55:35 +11:00
install -D -m 0644 $SRC/rocksndiamonds.desktop $PKG/usr/share/applications/rocksndiamonds.desktop
2008-03-17 02:59:56 +11:00
rm $PKG/usr/share/rocksndiamonds/levels/Tutorials/rnd_tutorial_niko_boehm/README
2006-11-14 09:01:22 +10:00
}