diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-03-11 05:31:23 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-03-11 13:24:36 +0700 |
commit | 6398be89badba8653c52a8713632202f46c50e3d (patch) | |
tree | 5bcbf32f5b99271521fd68f3fba33eee25f81c26 /audio/volti | |
parent | b463ef151d388027759b2f1a099f5ef9db4d79ae (diff) | |
download | slackbuilds-6398be89badba8653c52a8713632202f46c50e3d.tar.gz |
audio/volti: Fix assertion.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'audio/volti')
-rw-r--r-- | audio/volti/volti.SlackBuild | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/audio/volti/volti.SlackBuild b/audio/volti/volti.SlackBuild index 7232e40a32..4d1984e922 100644 --- a/audio/volti/volti.SlackBuild +++ b/audio/volti/volti.SlackBuild @@ -23,7 +23,7 @@ PRGNAM=volti VERSION=${VERSION:-0.2.3} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -73,6 +73,8 @@ python setup.py install --prefix=/usr --root=$PKG # Fix bad location of man pages mv $PKG/usr/share/man $PKG/usr +sed -i "s|assert dbus.version >= (0, 80, 0)|assert dbus.version >= [0, 80, 0]|g" $PKG/usr/bin/volti + find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true |