summaryrefslogtreecommitdiffstats
path: root/games/ioquake3/ioquake3.SlackBuild
blob: ed3394736c8905e5e3d809eed78b16fc5d77ec42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#!/bin/sh

# Slackware build script for ioquake3

# Written by M.Dinslage  contact: daedra1980@gmail.com

PRGNAM=ioquake3
VERSION=r2252
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}

# Changing this to BARCH since we want the Makefile building
# the binaries as close to the binary releases as possible.
if [ -z "$BARCH" ]; then
  case "$( uname -m )" in
    i?86) export BARCH=i486 ;;
    arm*) export BARCH=arm ;;
       *) export BARCH=$( uname -m ) ;;
  esac
fi

CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}

set -e

rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
cd $PRGNAM

if [ "${SMP:-NO}" = "NO" ]; then
  SMPOPT="0"
else
  SMPOPT="1"
fi

chown -R root:root .
find . \
 \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
 -exec chmod 755 {} \; -o \
 \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
 -exec chmod 644 {} \;

#Disable use of own CFLAGS, we will use defaults since we
#want to be as close to the binary releases as possible
#CFLAGS="$SLKCFLAGS" \
#CXXFLAGS="$SLKCFLAGS" \

make release copyfiles USE_CODEC_VORBIS=1 BUILD_CLIENT_SMP=$SMPOPT COPYDIR="$PKG"/usr/share/games/quake3 || exit 1

# update quake3 files to newest point release (1.32)
unzip $CWD/quake3-latest-pk3s.zip
cp quake3-latest-pk3s/baseq3/*.pk3 $PKG/usr/share/games/quake3/baseq3
cp quake3-latest-pk3s/missionpack/*.pk3 $PKG/usr/share/games/quake3/missionpack

mkdir -p $PKG/usr/share/{applications,pixmaps}
cat $CWD/$PRGNAM.desktop > $PKG/usr/share/applications/$PRGNAM.desktop
cat $CWD/quake3.png > $PKG/usr/share/pixmaps/quake3.png

# Add launcher
mkdir $PKG/usr/games
cat $CWD/launcher.ioquake3 > $PKG/usr/games/ioquake3
chmod 0755 $PKG/usr/games/ioquake3

# For some reason the installer doesn't seem to want to copy SMP executable
# so we take care of it outselves :). Also lets change the .desktop file to
# launch the SMP version.
# This seems to be obsolete now, but I am going to leave it here
# commented out for at least one more udpate "just incase"
#if [ "${SMP:-NO}" = "NO" ]; then
#  SMP=""
#else
#  cp $TMP/$PRGNAM/build/release-linux-*/ioquake3-smp.* $PKG/usr/share/games/quake3
#  sed -i 's,ioquake3.*,ioquake3-smp.*,g' $PKG/usr/games/ioquake3
#fi

mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a BUGS ChangeLog NOTTODO README TODO id-readme.txt $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild

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 -p $OUTPUT/$PRGNAM-$VERSION-$BARCH-$BUILD$TAG.${PKGTYPE:-tgz}