diff options
author | fourtysixandtwo <fourtysixandtwo@sliderr.net> | 2022-09-24 02:49:15 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-09-25 13:59:45 +0700 |
commit | 96f08f881fdfe679aa78d238ec8c264e4cc8932f (patch) | |
tree | de8cb3cebb884438a0a058aae3f8cdd093d8688d /system/tmuxp/tmuxp.SlackBuild | |
parent | 89136be0fa57c32be0ffe403e36d5087dc44f23f (diff) |
system/tmuxp: Updated for version 1.15.0.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/tmuxp/tmuxp.SlackBuild')
-rw-r--r-- | system/tmuxp/tmuxp.SlackBuild | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/system/tmuxp/tmuxp.SlackBuild b/system/tmuxp/tmuxp.SlackBuild index 91a66772aa701..ddfe4830746d5 100644 --- a/system/tmuxp/tmuxp.SlackBuild +++ b/system/tmuxp/tmuxp.SlackBuild @@ -24,11 +24,12 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # 20220512 46and2: Updated version, fix README, New maintainer. +# 20220919 46and2: Updated version, change build process. cd $(dirname $0) ; CWD=$(pwd) PRGNAM=tmuxp -VERSION=${VERSION:-1.11.1} +VERSION=${VERSION:-1.15.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -82,7 +83,8 @@ 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 {} \; -python3 setup.py install --root=$PKG +python3 -m build --no-isolation +python3 -m installer -d "$PKG" dist/*.whl 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 |