Files
termux-packages/packages/keybase/build.sh
termux-pacman-bot 9128e3e371 bump(main/keybase): 6.5.2
This commit has been automatically submitted by Github Actions.
2026-02-04 06:49:20 +00:00

29 lines
1002 B
Bash

TERMUX_PKG_HOMEPAGE=https://keybase.io
TERMUX_PKG_DESCRIPTION="Key directory that maps social media identities to encryption keys"
TERMUX_PKG_LICENSE="BSD 3-Clause"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="6.5.2"
TERMUX_PKG_SRCURL=https://github.com/keybase/client/releases/download/v$TERMUX_PKG_VERSION/keybase-v$TERMUX_PKG_VERSION.tar.xz
TERMUX_PKG_SHA256=29900fa15db387e744ca5f58306fe54f2e6a3969d376c76ec0187e2049b9615c
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_REPLACES="kbfs"
TERMUX_PKG_CONFLICTS="kbfs"
TERMUX_PKG_BUILD_IN_SRC=true
termux_step_make() {
termux_setup_golang
cd go
go mod init || :
go mod tidy -compat=1.17
mkdir .bin
go build -v -tags 'production' -o ./.bin/keybase ./keybase
go build -v -tags 'production' -o ./.bin/git-remote-keybase \
./kbfs/kbfsgit/git-remote-keybase
go build -v -tags 'production' -o ./.bin/kbfsfuse ./kbfs/kbfsfuse
}
termux_step_make_install() {
install -Dm700 -t $TERMUX_PREFIX/bin \
./go/.bin/{keybase,git-remote-keybase,kbfsfuse}
}