2021-07-03 19:48:15 +02:00
|
|
|
#!/bin/bash
|
2011-12-18 06:01:18 +01:00
|
|
|
|
|
|
|
# Slackware build script for megaglest
|
|
|
|
|
2017-03-10 06:21:58 +01:00
|
|
|
# Copyright 2011-2017 Larry Hajali <larryhaj[at]gmail[dot]com>
|
2013-12-01 09:05:06 +01:00
|
|
|
# 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.
|
2011-12-18 06:01:18 +01:00
|
|
|
|
2022-02-22 21:50:47 +01:00
|
|
|
# 20220222 bkw: Modified by SlackBuilds.org: fix build on 15.0.
|
|
|
|
|
2021-02-15 11:01:06 +01:00
|
|
|
# 20210215 bkw: modified by SlackBuilds.org: This build was broken for
|
|
|
|
# *3 years* and nobody ever complained...
|
|
|
|
# - Add -std=c++11 to CXXFLAGS.
|
|
|
|
# - Force cmake to use lua 5.1. This fixes the build on systems where
|
|
|
|
# both lua and (lua52 and/or lua53) are installed.
|
|
|
|
# - Add -j1 to the 'make install' because the xvfb-run script fails if
|
|
|
|
# a 2nd instance is started (and get rid of parallel build warning
|
|
|
|
# in README).
|
|
|
|
|
2024-10-25 22:24:58 +02:00
|
|
|
# 20240925 bkw: Modified by SlackBuilds.org, BUILD=2:
|
|
|
|
# - Bump BUILD for lua 5.4.
|
|
|
|
|
2021-07-04 11:41:06 +02:00
|
|
|
cd $(dirname $0) ; CWD=$(pwd)
|
|
|
|
|
2011-12-18 06:01:18 +01:00
|
|
|
PRGNAM=megaglest
|
2017-03-10 06:21:58 +01:00
|
|
|
VERSION=${VERSION:-3.13.0}
|
2024-10-25 22:24:58 +02:00
|
|
|
BUILD=${BUILD:-2}
|
2011-12-18 06:01:18 +01:00
|
|
|
TAG=${TAG:-_SBo}
|
2021-07-04 12:23:38 +02:00
|
|
|
PKGTYPE=${PKGTYPE:-tgz}
|
2011-12-18 06:01:18 +01:00
|
|
|
|
|
|
|
if [ -z "$ARCH" ]; then
|
|
|
|
case "$( uname -m )" in
|
2017-03-10 06:21:58 +01:00
|
|
|
i?86) ARCH=i586 ;;
|
2011-12-18 06:01:18 +01:00
|
|
|
arm*) ARCH=arm ;;
|
|
|
|
*) ARCH=$( uname -m ) ;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
|
2021-07-04 12:23:38 +02:00
|
|
|
# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
|
|
|
|
# the name of the created package would be, and then exit. This information
|
|
|
|
# could be useful to other scripts.
|
|
|
|
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
|
|
|
|
echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2011-12-18 06:01:18 +01:00
|
|
|
TMP=${TMP:-/tmp/SBo}
|
|
|
|
PKG=$TMP/package-$PRGNAM
|
|
|
|
OUTPUT=${OUTPUT:-/tmp}
|
|
|
|
|
2017-03-10 06:21:58 +01:00
|
|
|
if [ "$ARCH" = "i586" ]; then
|
|
|
|
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
|
2011-12-18 06:01:18 +01:00
|
|
|
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
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
rm -rf $PKG
|
|
|
|
mkdir -p $TMP $PKG $OUTPUT
|
|
|
|
cd $TMP
|
2014-04-09 16:20:32 +02:00
|
|
|
rm -rf $PRGNAM-$VERSION
|
2011-12-18 06:01:18 +01:00
|
|
|
tar xvf $CWD/$PRGNAM-source-$VERSION.tar.xz
|
2014-04-09 16:20:32 +02:00
|
|
|
tar xvf $CWD/$PRGNAM-source-embedded-$VERSION.tar.xz
|
2017-03-10 06:21:58 +01:00
|
|
|
tar xvf $CWD/$PRGNAM-data-$VERSION.tar.xz -C $PRGNAM-$VERSION
|
2014-04-09 16:20:32 +02:00
|
|
|
cd $PRGNAM-$VERSION
|
2016-08-05 19:12:01 +02:00
|
|
|
#find . -type l -exec rm -f '{}' \;
|
2011-12-18 06:01:18 +01:00
|
|
|
chown -R root:root .
|
2013-11-22 08:37:19 +01:00
|
|
|
find -L . \
|
2015-01-29 11:35:55 +01:00
|
|
|
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
2022-02-22 21:50:47 +01:00
|
|
|
-o -perm 511 \) -exec chmod 755 {} \+ -o \
|
2015-01-29 11:35:55 +01:00
|
|
|
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
2022-02-22 21:50:47 +01:00
|
|
|
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \+
|
|
|
|
|
|
|
|
# 20220222 bkw: force cmake to find wxPython (wx version 2), regardless
|
|
|
|
# of the /usr/bin/wx-config symlink.
|
|
|
|
mkdir -p wxtmp
|
|
|
|
ln -s /usr/lib$LIBDIRSUFFIX/wx/config/gtk2-unicode-release-2.8 wxtmp/wx-config
|
|
|
|
export PATH=$(pwd)/wxtmp:$PATH
|
2011-12-18 06:01:18 +01:00
|
|
|
|
2012-12-21 11:37:41 +01:00
|
|
|
# Fix megaglest help2man when no X display is available. Use a wrapper
|
2015-01-29 11:35:55 +01:00
|
|
|
# script from upstream for Xvfb that creates a temporary *fake* framebuffer.
|
2017-03-10 06:21:58 +01:00
|
|
|
install -D -m 0755 $CWD/xvfb-run $TMP/$PRGNAM-$VERSION/bin/xvfb-run
|
|
|
|
export PATH="$PATH:$TMP/$PRGNAM-$VERSION/bin"
|
2016-08-05 19:12:01 +02:00
|
|
|
patch -p1 < $CWD/megaglest-help2man.patch
|
|
|
|
patch -p1 < $CWD/megaglest-underlink.patch
|
2012-08-10 18:39:24 +02:00
|
|
|
|
2022-02-22 21:50:47 +01:00
|
|
|
SLKCFLAGS+=" -fcommon"
|
|
|
|
|
2011-12-18 06:01:18 +01:00
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
cmake -G "Unix Makefiles" \
|
2021-02-15 11:01:06 +01:00
|
|
|
-DLUA_LIBRARY="/usr/lib$LIBDIRSUFFIX/liblua.so" \
|
|
|
|
-DLUA_INCLUDE_DIR="/usr/include/" \
|
|
|
|
-DLUA_MATH_LIBRARY="/usr/lib$LIBDIRSUFFIX/libm.so" \
|
2011-12-18 06:01:18 +01:00
|
|
|
-DCMAKE_INSTALL_PREFIX:PATH=/usr \
|
2016-02-05 18:28:48 +01:00
|
|
|
-DWANT_GIT_STAMP=OFF \
|
2011-12-18 06:01:18 +01:00
|
|
|
-DMEGAGLEST_BIN_INSTALL_PATH:PATH="games/" \
|
|
|
|
-DMEGAGLEST_MANPAGE_INSTALL_PATH:PATH="man/man6/" \
|
2016-08-05 19:12:01 +02:00
|
|
|
-DWANT_USE_XercesC:BOOL=ON \
|
2011-12-18 06:01:18 +01:00
|
|
|
-DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \
|
2021-02-15 11:01:06 +01:00
|
|
|
-DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS -std=c++11" \
|
2011-12-18 06:01:18 +01:00
|
|
|
-DCMAKE_BUILD_TYPE=Release ..
|
|
|
|
|
|
|
|
make VERBOSE=1
|
2021-02-15 11:01:06 +01:00
|
|
|
make -j1 install DESTDIR=$PKG
|
2013-12-01 09:05:06 +01:00
|
|
|
cd -
|
2011-12-18 06:01:18 +01:00
|
|
|
|
|
|
|
# Now install the game data
|
2014-04-09 16:20:32 +02:00
|
|
|
cd $PRGNAM-$VERSION
|
2011-12-18 06:01:18 +01:00
|
|
|
cmake -G "Unix Makefiles" \
|
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
|
|
-DCMAKE_BUILD_TYPE=Release .
|
|
|
|
|
|
|
|
make install DESTDIR=$PKG
|
2013-12-01 09:05:06 +01:00
|
|
|
cd -
|
2011-12-18 06:01:18 +01:00
|
|
|
|
|
|
|
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
|
|
|
|
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
|
|
|
|
2013-12-01 09:05:06 +01:00
|
|
|
find $PKG/usr/man -type f -exec gzip -9 '{}' \;
|
2011-12-18 06:01:18 +01:00
|
|
|
|
|
|
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
|
|
|
cp -a \
|
2014-04-09 16:20:32 +02:00
|
|
|
docs/* $PRGNAM-$VERSION/docs/{AUTHORS*,LICENSE*,README.data*,cc*}.txt \
|
2011-12-18 06:01:18 +01:00
|
|
|
$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
|
2021-07-04 12:23:38 +02:00
|
|
|
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
|