games/mangband: Added (graphical dungeon adventure game).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
969e85c898
commit
ae342414f1
|
@ -0,0 +1,2 @@
|
|||
MAngband is a free online multiplayer real-time roguelike game, derived from
|
||||
the single player game Angband.
|
|
@ -0,0 +1,26 @@
|
|||
if [ -x /usr/bin/update-desktop-database ]; then
|
||||
/usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
|
||||
fi
|
||||
|
||||
config() {
|
||||
NEW="$1"
|
||||
OLD="$(dirname $NEW)/$(basename $NEW .new)"
|
||||
if [ ! -r $OLD ]; then
|
||||
mv $NEW $OLD
|
||||
elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
|
||||
rm $NEW
|
||||
fi
|
||||
}
|
||||
|
||||
config /usr/share/games/mangband/lib/data/scores.raw.new
|
||||
config /usr/share/games/mangband/lib/edit/artifact.txt.new
|
||||
config /usr/share/games/mangband/lib/edit/ego_item.txt.new
|
||||
config /usr/share/games/mangband/lib/edit/flavor.txt.new
|
||||
config /usr/share/games/mangband/lib/edit/limits.txt.new
|
||||
config /usr/share/games/mangband/lib/edit/monster.txt.new
|
||||
config /usr/share/games/mangband/lib/edit/object.txt.new
|
||||
config /usr/share/games/mangband/lib/edit/p_class.txt.new
|
||||
config /usr/share/games/mangband/lib/edit/p_hist.txt.new
|
||||
config /usr/share/games/mangband/lib/edit/p_race.txt.new
|
||||
config /usr/share/games/mangband/lib/edit/terrain.txt.new
|
||||
config /usr/share/games/mangband/lib/edit/vault.txt.new
|
|
@ -0,0 +1,135 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for mangband
|
||||
|
||||
# Copyright 2017, David Melik, Spokane, WA, USA
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
# permitted provided that the following conditions are met:
|
||||
#
|
||||
# 1. Redistributions of this script must retain the above copyright
|
||||
# notice, this list of conditions and the following disclaimer.
|
||||
#
|
||||
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
|
||||
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
||||
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
||||
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PRGNAM=mangband
|
||||
VERSION=${VERSION:-1.1.3}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i586 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i586" ]; then
|
||||
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
LIBDIRSUFFIX="64"
|
||||
else
|
||||
SLKCFLAGS="-O2"
|
||||
LIBDIRSUFFIX=""
|
||||
fi
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
rm -rf $TMP/$PRGNAM-$VERSION
|
||||
cd $TMP
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
find -L . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
||||
-o -perm 511 \) -exec chmod 755 {} \; -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||
|
||||
cd src
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
#Remove --with-sdl=no SDL when bugs fixed
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--with-libpath=/usr/share/games/mangband \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var \
|
||||
--with-setgid=games \
|
||||
--build=$ARCH-slackware-linux \
|
||||
--with-sdl=no
|
||||
|
||||
make
|
||||
make install DESTDIR=$PKG
|
||||
|
||||
#the real 'make install:'
|
||||
mkdir -p $PKG/usr/share/games
|
||||
mkdir -p $PKG/usr/games
|
||||
|
||||
cd $PKG/usr/games
|
||||
ln -fs /usr/share/games/mangband/mangband.sh mangband
|
||||
ln -fs /usr/share/games/mangband/mangband.sh mangband.server
|
||||
cd $TMP/$PRGNAM-$VERSION
|
||||
|
||||
cd ..
|
||||
rm $PRGNAM-$VERSION/src/server/*.o
|
||||
rm $PRGNAM-$VERSION/src/common/*.o
|
||||
rm $PRGNAM-$VERSION/src/client/*.o
|
||||
mv $PRGNAM-$VERSION/ $PKG/usr/share/games/$PRGNAM
|
||||
cp $CWD/mangband.sh $PKG/usr/share/games/mangband
|
||||
chmod a+x $PKG/usr/share/games/mangband/mangband.sh
|
||||
|
||||
find $PKG -name "delete.me" -exec rm -f {} \; || true
|
||||
|
||||
mv $PKG/usr/share/games/mangband/lib/data/scores.raw \
|
||||
$PKG/usr/share/games/mangband/lib/data/scores.raw.new
|
||||
for i in \
|
||||
artifact ego_item flavor limits monster object p_class p_hist p_race \
|
||||
terrain vault ;
|
||||
do mv $PKG/usr/share/games/mangband/lib/edit/$i.txt \
|
||||
$PKG/usr/share/games/mangband/lib/edit/$i.txt.new ;
|
||||
done
|
||||
mkdir -p $PKG/usr/share/games/mangband/{cores,logs}
|
||||
|
||||
mkdir -p $PKG/usr/share/{applications,pixmaps}
|
||||
cp $CWD/mangband.png $PKG/usr/share/pixmaps
|
||||
cp $CWD/mangband.desktop $PKG/usr/share/applications
|
||||
|
||||
cd $PKG
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a \
|
||||
$PKG/usr/share/games/mangband/lib/help \
|
||||
$PKG/usr/share/games/mangband/LICENSE \
|
||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
||||
find $PKG/usr/doc/$PRGNAM-$VERSION/ -type f -exec chmod 644 {} \;
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$APP.SlackBuild
|
||||
rm -f $PKG/usr/doc/$PRGNAM-$VERSION/help/.depend*
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
|
@ -0,0 +1,8 @@
|
|||
[Desktop Entry]
|
||||
Name=Mangband
|
||||
Comment=Dive into Arda and defeat Morgoth
|
||||
Exec=mangclient
|
||||
Terminal=true
|
||||
Type=Application
|
||||
Categories=Game;
|
||||
Icon=tome
|
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="mangband"
|
||||
VERSION="1.1.3"
|
||||
HOMEPAGE="http://mangband.org/"
|
||||
DOWNLOAD="http://mangband.org/download/mangband-1.1.3.tar.gz"
|
||||
MD5SUM="f1cc146cc1cddcfb09c2a30f7936c165"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="%README%"
|
||||
MAINTAINER="David Melik"
|
||||
EMAIL="dchmelik@gmail.com"
|
Binary file not shown.
After Width: | Height: | Size: 603 B |
|
@ -0,0 +1,32 @@
|
|||
# #!/bin/sh
|
||||
|
||||
GAMES_MANGBAND=/usr/share/games/mangband
|
||||
|
||||
if [ ! -e ${HOME}/.mangband ]; then
|
||||
mkdir -p ${HOME}/.mangband
|
||||
|
||||
# Make a copy of the lib directory for the user
|
||||
cp -R ${GAMES_MANGBAND}/lib ${HOME}/.mangband/
|
||||
|
||||
# Server configuration files
|
||||
cp ${GAMES_MANGBAND}/mangband.cfg ${HOME}/.mangband/
|
||||
|
||||
# Create an account file
|
||||
#touch ${HOME}/.mangband/mangband.acc
|
||||
|
||||
# Create links for running the server in ${HOME}/.mangband
|
||||
fi
|
||||
|
||||
cd ${HOME}/.mangband
|
||||
|
||||
# Point $MANGBAND_PATH to the local lib directory
|
||||
export MANGBAND_PATH=${HOME}/.mangband/lib
|
||||
|
||||
case $(basename $0) in
|
||||
mangband)
|
||||
exec ${GAMES_MANGBAND}/mangclient "$@"
|
||||
;;
|
||||
mangband.server)
|
||||
exec ${GAMES_MANGBAND}/runserv "$@"
|
||||
;;
|
||||
esac
|
|
@ -0,0 +1,19 @@
|
|||
# HOW TO EDIT THIS FILE:
|
||||
# The "handy ruler" below makes it easier to edit a package description.
|
||||
# Line up the first '|' above the ':' following the base package name, and
|
||||
# the '|' on the right side marks the last column you can put a character in.
|
||||
# You must make exactly 11 lines for the formatting to be correct. It's also
|
||||
# customary to leave one space after the ':' except on otherwise blank lines.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
mangband: mangband (graphical dungeon adventure game)
|
||||
mangband:
|
||||
mangband: MAngband is a free online multiplayer real-time roguelike game,
|
||||
mangband: derived from the single player game Angband.
|
||||
mangband:
|
||||
mangband: homepage: http://mangband.org/
|
||||
mangband: forum: http://angband.oook.cz/forum/
|
||||
mangband: Usenet newsgroup: nntp://rec.games.roguelike.angband
|
||||
mangband:
|
||||
mangband:
|
||||
mangband:
|
Loading…
Reference in New Issue