From f9b900807530cc33b3bfc9ed138e2edca9fa9ef6 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Wed, 4 Nov 2020 02:01:53 -0500 Subject: audio/mixxx: Fix build. Signed-off-by: B. Watson Signed-off-by: Willy Sudiarto Raharjo --- audio/mixxx/mixxx.SlackBuild | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'audio/mixxx/mixxx.SlackBuild') diff --git a/audio/mixxx/mixxx.SlackBuild b/audio/mixxx/mixxx.SlackBuild index d29e4a1da6..18a05fe4a1 100644 --- a/audio/mixxx/mixxx.SlackBuild +++ b/audio/mixxx/mixxx.SlackBuild @@ -68,14 +68,19 @@ cd $PRGNAM-release-$VERSION chown -R root:root . find -L . \ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ - -o -perm 511 \) -exec chmod 755 {} \; -o \ + -o -perm 511 \) -exec chmod 755 {} \+ -o \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ - -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \+ # Fix library installation path sed -i "s|'lib'|'lib$LIBDIRSUFFIX'|" build/depends.py src/SConscript || exit 1 sed -i "s|usr/lib|usr/lib$LIBDIRSUFFIX|" src/SConscript || exit 1 +# 20201104 bkw: Install udev rules to $PKG/etc, not the real /etc! +# The dir has to already exist, too. +sed -i "s,/etc/udev,$PKG&," src/SConscript +mkdir -p $PKG/etc/udev/rules.d + export SCONSFLAGS="-j $(nproc)" CFLAGS="$SLKCFLAGS" \ QTDIR=/usr/lib$LIBDIRSUFFIX/qt5 \ -- cgit v1.2.3