SlackBuildsOrg/audio/connie/connie.SlackBuild
B. Watson 7e8ef8fca4 audio/connie: Update email address.
Signed-off-by: B. Watson <urchlay@slackware.uk>
2022-06-09 11:41:35 -04:00

153 lines
4.3 KiB
Bash

#!/bin/bash
# Slackware build script for connie
# Written by B. Watson (urchlay@slackware.uk)
# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
# 20211130 bkw: BUILD=2, new-style icons.
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=connie
VERSION=${VERSION:-0.4.3rc9}
BUILD=${BUILD:-2}
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}
# No support for CFLAGS, use upstream's
if [ "$ARCH" = "i586" ]; then
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
LIBDIRSUFFIX=""
elif [ "$ARCH" = "x86_64" ]; then
LIBDIRSUFFIX="64"
else
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 {} \+
# SSE isn't autodetected
SSE=${SSE:-yes}
# QT is left disabled by default because it's experimental. It works,
# but is basically useless.
# 20211130 bkw: Slackware -current dropped qt4, and SBo hasn't picked it
# up yet, and this won't with with 5. So even more useless than before.
QT=${QT:-no}
if [ "$SSE" = "yes" ]; then
TARGET=${PRGNAM}_sse
else
TARGET=${PRGNAM}_i386
fi
# clean up the Makefile, enable jack session support.
# There are a couple of scary-looking compile warnings, but the program
# seems to run fine, so I won't try to fix them.
sed -i \
-e 's,pentium3,native -fPIC ,' \
-e '/-ljack/s,$, -lm -lpthread,' \
-e '/^# *JACK_SESSION/s,^# *,,' \
Makefile qt4/${PRGNAM}_qt4.pro
make $TARGET
# 'make install' is tailored to debian, just do it manually.
# We won't use upstream's wrapper script, as it causes unexpected
# behaviour (spawns a new xterm, even if run from an xterm). Instead,
# the .desktop file runs in a terminal.
mkdir -p $PKG/usr/bin $PKG/usr/man/man1
install -s -m0755 $TARGET $PKG/usr/bin/$PRGNAM
for px in 16 32 48 64; do
size=${px}x${px}
dir=$PKG/usr/share/icons/hicolor/$size/apps
mkdir -p $dir
convert -resize $size $PRGNAM.png $dir/$PRGNAM.png
done
# original icon is 116x116, do not embiggen.
mkdir -p $PKG/usr/share/icons/hicolor/128x128/apps
convert -background none -extent 128x128 -gravity center \
$PRGNAM.png \
$PKG/usr/share/icons/hicolor/128x128/apps/$PRGNAM.png
mkdir -p $PKG/usr/share/pixmaps
ln -s ../icons/hicolor/48x48/apps/$PRGNAM.png $PKG/usr/share/pixmaps/$PRGNAM.png
# .desktop written for this SlackBuild
mkdir -p $PKG/usr/share/applications
cat $CWD/$PRGNAM.desktop > $PKG/usr/share/applications/$PRGNAM.desktop
# We only install one binary (either i386 or sse), so fix up the man page
# so it doesn't mention connie_i386 and connie_sse.
sed -i '/^Two bin/,+4d' $PRGNAM.1
# Build experimental QT4 UI if enabled.
if [ "$QT" = "yes" ]; then
cd qt4
[ "$SSE" = "no" ] && sed -i 's,-march.*,-Wall -O3 -fomit-frame-pointer -pipe,' *.pro
qmake
make
install -s -m0755 ${PRGNAM}_qt4 $PKG/usr/bin/${PRGNAM}_qt4
cat $CWD/${PRGNAM}_qt4.desktop > $PKG/usr/share/applications/${PRGNAM}_qt4.desktop
cd -
sed -i \
-e '/^\.SH DESC/i.br\n.B connie_qt4 [options]' \
-e '/^\.sp/cconnie_qt4 has a GUI, takes the same options as connie, but supports no keyboard commands.' \
$PRGNAM.1
ln -sf $PRGNAM.1.gz $PKG/usr/man/man1/${PRGNAM}_qt4.1.gz
fi
gzip -9c $PRGNAM.1 > $PKG/usr/man/man1/$PRGNAM.1.gz
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a README TODO LICENSE debian/changelog \
$PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install
sed -e "s,%SSE%,$SSE," -e "s,%QT%,$QT," $CWD/slack-desc \
> $PKG/install/slack-desc
cat $CWD/doinst.sh > $PKG/install/doinst.sh
# Only add capability stuff if not disabled:
if [ "${SETCAP:-yes}" = "yes" ]; then
cat $CWD/setcap.sh >> $PKG/install/doinst.sh
# Only allow execution by audio group
chown root:audio $PKG/usr/bin/*
chmod 0750 $PKG/usr/bin/*
fi
cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE