diff options
author | B. Watson <urchlay@slackware.uk> | 2023-03-20 15:32:32 -0400 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-03-25 10:02:01 +0700 |
commit | 76ba426c75a2a5eec34baf38de0a70660a81dd78 (patch) | |
tree | d3e582501bc6d0b13a6de1454accc8526a7e5003 /network/transmission/transmission.SlackBuild | |
parent | 4817c795ce52f6e0c5de1236372eb7ec362ef62f (diff) |
network/transmission: Updated for version 4.0.2.
Signed-off-by: B. Watson <urchlay@slackware.uk>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/transmission/transmission.SlackBuild')
-rw-r--r-- | network/transmission/transmission.SlackBuild | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/network/transmission/transmission.SlackBuild b/network/transmission/transmission.SlackBuild index a29579d7362dd..1539e06ca369b 100644 --- a/network/transmission/transmission.SlackBuild +++ b/network/transmission/transmission.SlackBuild @@ -24,6 +24,9 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# 20230320 bkw: update for v4.0.2. add -DREBUILD_WEB=OFF to allow building +# without using the network, if nodejs is installed. thanks +# to Ruben Schuller for pointing this out. # 20230208 bkw: update for v4.0.0, which has only been out for about 5 hours. # - Disable the qt5 UI by default. There's no reason to build both GUIs # by default. User can still say GTK=no QT=yes to get only the qt UI. @@ -45,7 +48,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=transmission -VERSION=${VERSION:-4.0.0} +VERSION=${VERSION:-4.0.2} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -122,6 +125,7 @@ find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \ mkdir -p build cd build cmake \ + -DREBUILD_WEB=OFF \ -DENABLE_DAEMON=$DAEMOPT \ -DENABLE_QT=$QTOPT \ -DENABLE_GTK=$GTKOPT \ |