diff options
author | B. Watson <yalhcru@gmail.com> | 2021-11-27 15:01:36 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-12-04 10:09:03 +0700 |
commit | ce43731bd052e7cde780610f96182034e03b685d (patch) | |
tree | 5d34b6a0c724666c20521145951bd863f4a7b153 /audio/mhwaveedit/mhwaveedit.SlackBuild | |
parent | 53158b1cadb345fb87de1600fb7b21eed270cc78 (diff) |
audio/mhwaveedit: Build enhancements.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'audio/mhwaveedit/mhwaveedit.SlackBuild')
-rw-r--r-- | audio/mhwaveedit/mhwaveedit.SlackBuild | 44 |
1 files changed, 34 insertions, 10 deletions
diff --git a/audio/mhwaveedit/mhwaveedit.SlackBuild b/audio/mhwaveedit/mhwaveedit.SlackBuild index 03d26c483be76..fdace487fedbc 100644 --- a/audio/mhwaveedit/mhwaveedit.SlackBuild +++ b/audio/mhwaveedit/mhwaveedit.SlackBuild @@ -1,12 +1,18 @@ #!/bin/bash # Slackware build script for mhwaveedit -# Written by Felix Krueger +# Originally written by Felix Krueger # Now maintained by B. Watson <yalhcru@gmail.com>. Original script # had no license. Modified version licensed under the WTFPL. See # http://www.wtfpl.net/txt/copying/ for details. +# 20211127 bkw: BUILD=2 +# - portaudio support was broken, explicitly disable it and remove +# from README. +# - add JACK=no in case someone needs it. +# - dynamic slack-desc. + # 20181022 bkw: # - Take over maintenance. # - Update for v1.4.24. Incompatible changes, can't build old version. @@ -19,7 +25,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=mhwaveedit VERSION=${VERSION:-1.4.24} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -31,9 +37,6 @@ if [ -z "$ARCH" ]; then 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 @@ -73,17 +76,28 @@ find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \ patch -p0 < $CWD/intbox.diff # 20181023 bkw: environment variables to control the build options. -MIXER="${MIXER:-xterm -e alsamixer}" PULSE="${PULSE:-yes}" OSS="${OSS:-no}" +JACK="${JACK:-yes}" + +[ "$PULSE" = "no" ] && EXTRAOPTS+=" --without-pulse" +[ "$OSS" = "no" ] && EXTRAOPTS+=" --without-oss" +[ "$JACK" = "no" ] && EXTRAOPTS+=" --without-jack" + +# 20211127 bkw: this just sets the default; it can be changed in the +# preferences. +MIXER="${MIXER:-xterm -e alsamixer}" -[ "$PULSE" = "no" ] && EXTRAOPTS="$EXTRAOPTS --without-pulse" -[ "$OSS" = "no" ] && EXTRAOPTS="$EXTRAOPTS --without-oss" +# 20211127 bkw: add --without-portaudio. Our portaudio lacks the +# Pa_Timestamp type, so the configure script would disable it anyway. +# Not sure if that means our portaudio is too new or too old, not +# all that interested anyway. CFLAGS="$SLKCFLAGS" \ ./configure \ --with-default-mixerapp="$MIXER" \ $EXTRAOPTS \ + --without-portaudio \ --with-default-ladspa-path=/usr/lib$LIBDIRSUFFIX/ladspa \ --prefix=/usr \ --libdir=/usr/lib${LIBDIRSUFFIX} \ @@ -110,11 +124,16 @@ cp -a AUTHORS COPYING ChangeLog NEWS README TODO $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 cat $CWD/doinst.sh > $PKG/install/doinst.sh +J=no; P=no; O=no + +objdump -p $PKG/usr/bin/$PRGNAM | grep -q 'NEEDED.*libpulse' && P=yes +strings $PKG/usr/bin/$PRGNAM | grep -q /dev/dsp && O=yes + # realtime audio stuff only if JACK support included. -if ldd $PKG/usr/bin/$PRGNAM | grep -q libjack; then +if objdump -p $PKG/usr/bin/$PRGNAM | grep -q 'NEEDED.*libjack'; then + J=yes if [ "${SETCAP:-yes}" = "yes" ]; then cat $CWD/setcap.sh >> $PKG/install/doinst.sh chown root:audio $PKG/usr/bin/$PRGNAM @@ -122,5 +141,10 @@ if ldd $PKG/usr/bin/$PRGNAM | grep -q libjack; then fi fi +sed -e "s,@J@,$J," \ + -e "s,@P@,$P," \ + -e "s,@O@,$O," \ + $CWD/slack-desc > $PKG/install/slack-desc + cd $PKG /sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE |