diff options
Diffstat (limited to 'network/deluge/deluge.SlackBuild')
-rw-r--r-- | network/deluge/deluge.SlackBuild | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/network/deluge/deluge.SlackBuild b/network/deluge/deluge.SlackBuild index db62c18f6aef..4d851d3f9e76 100644 --- a/network/deluge/deluge.SlackBuild +++ b/network/deluge/deluge.SlackBuild @@ -3,7 +3,7 @@ # Slackware build script for deluge. # Copyright 2010-2011 Marco Bonetti <sid77@slackware.it> -# Copyright 2019 Logan Rathbone <poprocks@gmail.com> +# Copyright 2019-2022 Logan Rathbone <poprocks@gmail.com> # # All rights reserved. # @@ -28,8 +28,8 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=deluge -VERSION=${VERSION:-2.0.3} -BUILD=${BUILD:-2} +VERSION=${VERSION:-2.0.5} +BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -81,8 +81,7 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; -python setup.py build || exit 1 -python setup.py install --root=$PKG || exit 1 +python3 setup.py install --root=$PKG || exit 1 find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true |