205 lines
5.8 KiB
Bash
205 lines
5.8 KiB
Bash
#!/bin/bash
|
|
|
|
# Slackware build script for xroar
|
|
|
|
# Written by B. Watson (yalhcru@gmail.com)
|
|
|
|
# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
|
|
|
|
# 20201025 bkw:
|
|
# - update for 0.36.2
|
|
# - the SDL 1.x UI is gone. One or the other of SDL2, gtkglext is
|
|
# required. Actually not really: you can build without either one,
|
|
# in which case you get an xroar that has no display at all! Added
|
|
# code to the script to prevent this from happening.
|
|
|
|
# 20191130 bkw:
|
|
# - update for 0.35.4
|
|
# - restore the SDL1 build, now that it builds again
|
|
# - remove the possibility of including ROMs in the package, because:
|
|
# - make xroar-roms a required dependency
|
|
|
|
# 20181201 bkw: update for 0.35.2
|
|
|
|
# 20180828 bkw:
|
|
# - update for 0.35
|
|
# - build with --without-oss by default, add OSS=yes option
|
|
# - get rid of alsa_first.diff (doesn't apply any more anyway)
|
|
# - add PULSE=no option
|
|
# - move cruft out of here & into ChangeLog.old
|
|
# - SDL 1.x build broke in 0.35, so remove SDL2=no and add SDL2
|
|
# to REQUIRES.
|
|
|
|
# 20170822 bkw:
|
|
# - update for 0.34.8
|
|
# - add SDL2=no and GTKGLEXT=no options, mostly for my own testing
|
|
# - record build options in slack-desc
|
|
|
|
# 20170122 bkw: update for 0.34.7
|
|
|
|
cd $(dirname $0) ; CWD=$(pwd)
|
|
|
|
PRGNAM=xroar
|
|
VERSION=${VERSION:-0.36.2}
|
|
BUILD=${BUILD:-1}
|
|
TAG=${TAG:-_SBo}
|
|
PKGTYPE=${PKGTYPE:-tgz}
|
|
|
|
if [ -z "$ARCH" ]; then
|
|
case "$( uname -m )" in
|
|
i?86) ARCH=i586 ;;
|
|
arm*) ARCH=arm ;;
|
|
*) ARCH=$( uname -m ) ;;
|
|
esac
|
|
fi
|
|
|
|
# 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
|
|
|
|
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
|
|
|
|
set -e
|
|
|
|
### Build options
|
|
# Lots of these. Check them immediately (don't bother to extract the
|
|
# source if there's a problem).
|
|
|
|
# Most users will want to leave OSS and PULSE alone.
|
|
[ "${OSS:-no}" = "yes" ] || OSSOPT="--without-oss"
|
|
[ "${PULSE:-yes}" = "yes" ] || PULSEOPT="--without-pulse"
|
|
|
|
# Not sure why anyone would need this, but it's easy to support.
|
|
JACKOPT="--without-jack"
|
|
[ "${JACK:-no}" = "yes" ] && JACKOPT="--with-jack"
|
|
|
|
SDL2=${SDL2:-yes}
|
|
GTKGLEXT=${GTKGLEXT:-yes}
|
|
|
|
if [ "$SDL2" = "yes" ]; then
|
|
pkg-config --exists sdl2 || SDL2=no
|
|
fi
|
|
|
|
if [ "$GTKGLEXT" = "yes" ]; then
|
|
pkg-config --exists gtkglext-1.0 || GTKGLEXT=no
|
|
fi
|
|
|
|
echo "=== SDL2=$SDL2, GTKGLEXT=$GTKGLEXT"
|
|
if [ "$SDL2" != "yes" ] && [ "$GTKGLEXT" != "yes" ]; then
|
|
echo "*** Fatal error: cannot build without at least one of SDL2 or gtkglext" 1>&2
|
|
exit 1
|
|
fi
|
|
|
|
[ "${SDL2:-yes}" != "yes" ] && SDL2OPT="--without-sdl2"
|
|
[ "${GTKGLEXT:-yes}" != "yes" ] && GTKGLOPT="--without-gtkgl"
|
|
### End of build options.
|
|
|
|
rm -rf $PKG
|
|
mkdir -p $TMP $PKG $OUTPUT
|
|
cd $TMP
|
|
rm -rf $PRGNAM-$VERSION
|
|
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
|
cd $PRGNAM-$VERSION
|
|
chown -R root:root .
|
|
find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \
|
|
\! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+
|
|
|
|
# fix underlinking via LDFLAGS instead of a .diff
|
|
LDFLAGS="-lm" \
|
|
CFLAGS="$SLKCFLAGS" \
|
|
CXXFLAGS="$SLKCFLAGS" \
|
|
./configure \
|
|
$OSSOPT $PULSEOPT $JACKOPT $SDL2OPT $GTKGLOPT \
|
|
--bindir=/usr/games \
|
|
--prefix=/usr \
|
|
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--mandir=/usr/man \
|
|
--docdir=/usr/doc/$PRGNAM-$VERSION \
|
|
--build=$ARCH-slackware-linux
|
|
|
|
make
|
|
make install DESTDIR=$PKG
|
|
strip $PKG/usr/games/$PRGNAM
|
|
|
|
# reset these for use in the slack-desc
|
|
SDL2=no; JACK=no; GTKGLEXT=no; PULSE=no; OSS=no
|
|
|
|
# actually examine the binary to figure out build options.
|
|
ldd $PKG/usr/games/$PRGNAM > ldd.tmp
|
|
grep -q libSDL2 ldd.tmp && SDL2=yes
|
|
grep -q libjack ldd.tmp && JACK=yes
|
|
grep -q libgtkglext ldd.tmp && GTKGLEXT=yes
|
|
grep -q libpulse.so ldd.tmp && PULSE=yes
|
|
strings $PKG/usr/games/$PRGNAM | grep -q /dev/dsp && OSS=yes
|
|
|
|
# man page needs to be in section 6, since this is in games/
|
|
mkdir -p $PKG/usr/man/man6
|
|
sed '1s,\<1\>,6,' \
|
|
< $PKG/usr/man/man1/$PRGNAM.1 \
|
|
| gzip -9c > $PKG/usr/man/man6/$PRGNAM.6.gz
|
|
rm -rf $PKG/usr/man/man1
|
|
|
|
mv $PKG/usr/share/info $PKG/usr/info
|
|
rm -rf $PKG/usr/share
|
|
rm -f $PKG/usr/info/dir
|
|
gzip -9 $PKG/usr/info/*.info*
|
|
|
|
# include empty ROM dir
|
|
mkdir -p $PKG/usr/share/xroar/roms
|
|
|
|
# Icon taken from Fedora package here:
|
|
# ftp://mirror.switch.ch/pool/3/mirror/rpmfusion/free/fedora/updates/8/i386/xroar-0.21-2.fc8.i386.rpm
|
|
# Current versions of xroar include windows and mac icons that are larger,
|
|
# but they don't include the word 'xroar' (just the X-shaped graphic), so
|
|
# I'm sticking with the old Fedora icon.
|
|
mkdir $PKG/usr/share/pixmaps
|
|
cat $CWD/$PRGNAM.png > $PKG/usr/share/pixmaps/$PRGNAM.png
|
|
|
|
mkdir $PKG/usr/share/applications
|
|
cp $CWD/*.desktop $PKG/usr/share/applications
|
|
|
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
|
# Don't bother with the README: it's only about installation, not usage
|
|
cp -a COPYING* ChangeLog $PKG/usr/doc/$PRGNAM-$VERSION
|
|
|
|
# HTML version of the info page, for those who hate info pages...
|
|
( cd doc && make $PRGNAM.html )
|
|
cp doc/$PRGNAM.html doc/*png $PKG/usr/doc/$PRGNAM-$VERSION
|
|
|
|
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
|
|
|
mkdir -p $PKG/install
|
|
sed -e "s,@JACK@,$JACK," \
|
|
-e "s,@SDL2@,$SDL2," \
|
|
-e "s,@GTKGLEXT@,$GTKGLEXT," \
|
|
-e "s,@PULSE@,$PULSE," \
|
|
-e "s,@OSS@,$OSS," \
|
|
-e "s,: no,& ,g" \
|
|
$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
|