contrib/rocksndiamonds/Pkgfile

39 lines
1.2 KiB
Plaintext
Raw Normal View History

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