diff options
author | isaackwy <isaacyu@protonmail.com> | 2024-09-24 13:57:22 -0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-09-27 23:12:04 +0700 |
commit | 85ec781f5973e4f9b7dccb2701985e0905301ce9 (patch) | |
tree | a3cf328ce8a24704bdfc01c37a373f6d51d96454 /system/piper | |
parent | 22adeea26faefe77706f7826d7436ad7c2744a39 (diff) |
system/piper: Update for 0.8
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/piper')
-rw-r--r-- | system/piper/piper.SlackBuild | 16 | ||||
-rw-r--r-- | system/piper/piper.info | 6 |
2 files changed, 9 insertions, 13 deletions
diff --git a/system/piper/piper.SlackBuild b/system/piper/piper.SlackBuild index fdf25ee439944..72781fa795cb2 100644 --- a/system/piper/piper.SlackBuild +++ b/system/piper/piper.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for piper -# Copyright 2021-2022 Isaac Yu <isaacyu@protonmail.com> +# Copyright 2021-2024 Isaac Yu <isaacyu@protonmail.com> # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -28,7 +28,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=piper -VERSION=${VERSION:-0.7} +VERSION=${VERSION:-0.8} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -80,20 +80,16 @@ find -L . \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \+ # Enable or disable tests -if [ ${TESTS:-no} = yes ]; then - ENABLE_TESTS=true -else - ENABLE_TESTS=false -fi +if [ ${TESTS:-no} = yes ]; then ENABLE_TESTS=true; else ENABLE_TESTS=false; fi mkdir -p build cd build CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ meson .. \ - --prefix /usr \ - --mandir /usr/man \ - --libdir /usr/lib${LIBDIRSUFFIX} \ + --prefix=/usr \ + --mandir=/usr/man \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ -Dtests=$ENABLE_TESTS "${NINJA:=ninja}" DESTDIR=$PKG $NINJA install diff --git a/system/piper/piper.info b/system/piper/piper.info index 4585b657b43e3..b21a3553629c2 100644 --- a/system/piper/piper.info +++ b/system/piper/piper.info @@ -1,8 +1,8 @@ PRGNAM="piper" -VERSION="0.7" +VERSION="0.8" HOMEPAGE="https://github.com/libratbag/piper" -DOWNLOAD="https://github.com/libratbag/piper/archive/0.7/piper-0.7.tar.gz" -MD5SUM="110c9cd1097d96ce9f6eeb0cd036e1b6" +DOWNLOAD="https://github.com/libratbag/piper/archive/0.8/piper-0.8.tar.gz" +MD5SUM="7a7266cef941ea908e990a5f4d18c7f8" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="libratbag python3-lxml" |