mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
3b015fee6a
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
84 lines
2.3 KiB
Bash
84 lines
2.3 KiB
Bash
#!/bin/sh
|
|
|
|
# Slackware build script for remglk
|
|
|
|
# Written by B. Watson (yalhcru@gmail.com)
|
|
|
|
# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
|
|
|
|
PRGNAM=remglk
|
|
VERSION=${VERSION:-0.2.6}
|
|
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
|
|
|
|
CWD=$(pwd)
|
|
TMP=${TMP:-/tmp/SBo}
|
|
PKG=$TMP/package-$PRGNAM
|
|
OUTPUT=${OUTPUT:-/tmp}
|
|
|
|
# Note: Using -Os here rather than -O2, since we're building a static
|
|
# library. Upstream doesn't do shared libs, and this de-bloats the
|
|
# static lib by around 15%. Please don't change this.
|
|
if [ "$ARCH" = "i586" ]; then
|
|
SLKCFLAGS="-Os -march=i586 -mtune=i686"
|
|
LIBDIRSUFFIX=""
|
|
elif [ "$ARCH" = "i686" ]; then
|
|
SLKCFLAGS="-Os -march=i686 -mtune=i686"
|
|
LIBDIRSUFFIX=""
|
|
elif [ "$ARCH" = "x86_64" ]; then
|
|
SLKCFLAGS="-Os -fPIC"
|
|
LIBDIRSUFFIX="64"
|
|
else
|
|
SLKCFLAGS="-Os"
|
|
LIBDIRSUFFIX=""
|
|
fi
|
|
|
|
set -e
|
|
|
|
rm -rf $PKG
|
|
mkdir -p $TMP $PKG $OUTPUT
|
|
cd $TMP
|
|
rm -rf $PRGNAM-$PRGNAM-$VERSION
|
|
tar xvf $CWD/$PRGNAM-$PRGNAM-$VERSION.tar.gz
|
|
cd $PRGNAM-$PRGNAM-$VERSION
|
|
|
|
# no subdirs, no need for template find stuff
|
|
chown -R root:root .
|
|
chmod 644 *
|
|
|
|
make OPTIONS="$SLKCFLAGS"
|
|
|
|
# Cuidado! strip strips too much from a static lib by default.
|
|
strip --strip-unneeded lib$PRGNAM.a
|
|
|
|
# Headers go in /usr/include/remglk, because glktermw installs
|
|
# identically-named (but slightly different) headers.
|
|
# Make.remglk really shouldn't go in /usr/include, it's *not* a C
|
|
# include (it's a Makefile include), but that's where upstream wants it,
|
|
# and where stuff that builds with glktermw looks for it (?)
|
|
# The Makefile says we only need to install glk.h and glkstart.h,
|
|
# but fizmo wants to include gi_blorb.h. Also gi_dispa.h looks like
|
|
# public API stuff.
|
|
mkdir -p $PKG/usr/lib$LIBDIRSUFFIX $PKG/usr/include/$PRGNAM
|
|
cat lib$PRGNAM.a > $PKG/usr/lib$LIBDIRSUFFIX/lib$PRGNAM.a
|
|
for i in glk.h glkstart.h Make.$PRGNAM gi_*.h; do
|
|
cat $i > $PKG/usr/include/$PRGNAM/$i
|
|
done
|
|
|
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
|
cp -a *.txt *.html LICENSE $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:-tgz}
|