mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
104 lines
2.6 KiB
Text
104 lines
2.6 KiB
Text
|
#!/bin/bash
|
||
|
|
||
|
# Slackware build script for rejoystick
|
||
|
|
||
|
# Written by Steven Pledger <email removed>
|
||
|
# Updated and now maintained by B. Watson <yalhcru@gmail.com>
|
||
|
|
||
|
# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
|
||
|
|
||
|
# 20220315 bkw: BUILD=4
|
||
|
# - new maintainer.
|
||
|
# - resurrected. all it needed was LIBS="-lX11" to fix compilation.
|
||
|
# - removed useless INSTALL from doc dir.
|
||
|
# - add quick start guide to our README.
|
||
|
# - add a bit of error checking to rejoystick.patch (so it
|
||
|
# won't segfault if HOME isn't set in the environment).
|
||
|
# - i486 => i586.
|
||
|
|
||
|
cd $(dirname $0) ; CWD=$(pwd)
|
||
|
|
||
|
PRGNAM=rejoystick
|
||
|
VERSION=${VERSION:-0.8.1}
|
||
|
BUILD=${BUILD:-4}
|
||
|
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 [ ! -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
|
||
|
|
||
|
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 {} \+
|
||
|
|
||
|
# Specify the path to the version.mk file inside of the configure script
|
||
|
sed -i "s|^\.\ version\.mk|. ./version.mk|" configure
|
||
|
|
||
|
patch -p1 < $CWD/rejoystick.patch
|
||
|
|
||
|
LIBS="-lX11" \
|
||
|
CFLAGS="$SLKCFLAGS" \
|
||
|
CXXFLAGS="$SLKCFLAGS" \
|
||
|
./configure \
|
||
|
--prefix=/usr \
|
||
|
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
||
|
--sysconfdir=/etc \
|
||
|
--localstatedir=/var \
|
||
|
--disable-static \
|
||
|
--build=$ARCH-slackware-linux
|
||
|
|
||
|
make
|
||
|
make install-strip DESTDIR=$PKG
|
||
|
|
||
|
# man page written for this SlackBuild. since this isn't really a game
|
||
|
# (more of a game-related utility), it's not a section 6 page.
|
||
|
mkdir -p $PKG/usr/man/man1
|
||
|
gzip -9c < $CWD/$PRGNAM.1 > $PKG/usr/man/man1/$PRGNAM.1.gz
|
||
|
|
||
|
# AUTHORS, ChangeLog, and NEWS are empty files
|
||
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||
|
cp -a COPYING README $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
|
||
|
|
||
|
cd $PKG
|
||
|
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
|