From da8eef10c22587f8fae818aaa81a8b2592b2ffc6 Mon Sep 17 00:00:00 2001 From: Henrik Grimler Date: Sun, 10 Oct 2021 17:05:59 +0200 Subject: [PATCH] proton-bridge: fix build with the golang version we are using --- packages/proton-bridge/build.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/proton-bridge/build.sh b/packages/proton-bridge/build.sh index bacca8721..1a21e768a 100644 --- a/packages/proton-bridge/build.sh +++ b/packages/proton-bridge/build.sh @@ -2,6 +2,7 @@ TERMUX_PKG_HOMEPAGE=https://github.com/ProtonMail/proton-bridge TERMUX_PKG_DESCRIPTION="ProtonMail Bridge application" TERMUX_PKG_LICENSE="GPL-3.0" TERMUX_PKG_VERSION=1.5.7 +TERMUX_PKG_REVISION=1 TERMUX_PKG_SRCURL=https://github.com/ProtonMail/proton-bridge.git TERMUX_PKG_GIT_BRANCH=br-$TERMUX_PKG_VERSION TERMUX_PKG_MAINTAINER="Radomír Polách " @@ -12,6 +13,7 @@ termux_step_make_install() { export GOPATH=$TERMUX_PKG_BUILDDIR export BUILDDIR=$TERMUX_PREFIX/bin cd $TERMUX_PKG_SRCDIR + go mod tidy make build-nogui install -Dm700 proton-bridge "$TERMUX_PREFIX"/bin/proton-bridge }