diff options
author | Ralph Spitzner <rasp@spitzner.org> | 2023-03-29 02:11:37 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-04-01 09:14:10 +0700 |
commit | dc028e94240cd9373593d587028946477d844feb (patch) | |
tree | 429e035f9e19828d0c3f5d84f9b5b18bc806cf20 /audio/JDSP4Linux/JDSP4Linux.SlackBuild | |
parent | fb84a0104e0c0bd90ac38388510a9abeefe13fd7 (diff) |
audio/JDSP4Linux: Updated for version 2.4.
Signed-off-by: bedlam <dave@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'audio/JDSP4Linux/JDSP4Linux.SlackBuild')
-rw-r--r-- | audio/JDSP4Linux/JDSP4Linux.SlackBuild | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/audio/JDSP4Linux/JDSP4Linux.SlackBuild b/audio/JDSP4Linux/JDSP4Linux.SlackBuild index aaee343bb6..b87347b520 100644 --- a/audio/JDSP4Linux/JDSP4Linux.SlackBuild +++ b/audio/JDSP4Linux/JDSP4Linux.SlackBuild @@ -25,7 +25,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=JDSP4Linux -VERSION=${VERSION:-2.3} +VERSION=${VERSION:-2.4} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -77,10 +77,15 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; - +sed -i '1s/^/QMAKE_CC = clang\nQMAKE_CXX = clang++\nQMAKE_LINK=clang++\n/' src/src.pro mkdir build cd build -qmake-qt5 ../JDSP4Linux.pro +if [ x"${PULSE}" == "x" ]; then + qmake-qt5 ../JDSP4Linux.pro + else + qmake-qt5 ../JDSP4Linux.pro "CONFIG += USE_PULSEAUDIO" + fi + make make install DESTDIR=$PKG |