#!/bin/bash # Slackware build script for mawk # Written by B. Watson (urchlay@slackware.uk) # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. # 20230822 bkw: Update for v1.3.4_20230808. # Sorry this went so long without updates. # - get MANIFEST out of the package doc dir (don't need). # - install examples/ to the doc dir (but without +x perms). # - run 'make check' by default, undocumented MAKECHECK=no to disable. # - if 'make check' is run, save the results to the doc dir. # - POSIX intervals (brace expressions) are now supported in the # built-in regex engine, so update README accordingly. # 20200302 bkw: Update for v1.3.4_20200120. # 20200111 bkw: Update for v1.3.4_20200106. # 20191129 bkw: Update for v1.3.4_20190203. # 20180902 bkw: Add BUILTIN_REGEX option. cd $(dirname $0) ; CWD=$(pwd) PRGNAM=mawk VERSION=${VERSION:-1.3.4_20230808} 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 [ ! -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 # This does nothing for 1.3.4, but allows e.g. VERSION=1.3.4_20171017 to # work correctly. # 20230822 bkw: trying to teach myself to remember bash's string substutions, # so get rid of the sed here. SRCVER="${VERSION/_/-}" rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP rm -rf $PRGNAM-$SRCVER tar xvf $CWD/$PRGNAM-$SRCVER.tgz cd $PRGNAM-$SRCVER 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 {} + if [ "${BUILTIN_REGEX:-yes}" = "yes" ]; then REGEX_OPT="--with-builtin-regex" REGEX_DESC="mawk's built-in" else REGEX_OPT="--without-builtin-regex" REGEX_DESC="glibc's" fi CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ $REGEX_OPT \ --prefix=/usr \ --libdir=/usr/lib${LIBDIRSUFFIX} \ --sysconfdir=/etc \ --localstatedir=/var \ --mandir=/usr/man \ --build=$ARCH-slackware-linux make [ "${MAKECHECK:-yes}" = "yes" ] && make check 2>&1 | tee make_check.out make install DESTDIR=$PKG strip $PKG/usr/bin/$PRGNAM gzip -9 $PKG/usr/man/man*/* PKGDOC=$PKG/usr/doc/$PRGNAM-$VERSION mkdir -p $PKGDOC chmod 644 examples/* cp -a ACKNOWLEDGMENT CHANGES COPYING README examples $PKGDOC [ -e make_check.out ] && cp -a make_check.out $PKGDOC cat $CWD/$PRGNAM.SlackBuild > $PKGDOC/$PRGNAM.SlackBuild mkdir -p $PKG/install sed "s,@REGEX_DESC@,$REGEX_DESC," $CWD/slack-desc > $PKG/install/slack-desc cd $PKG /sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE