Files
termux-packages/packages/buf/build.sh
termux-pacman-bot 400b40d247 bump(main/buf): 1.64.0
This commit has been automatically submitted by Github Actions.
2026-01-20 00:50:40 +00:00

25 lines
871 B
Bash

TERMUX_PKG_HOMEPAGE=https://buf.build
TERMUX_PKG_DESCRIPTION="A new way of working with Protocol Buffers"
TERMUX_PKG_LICENSE="Apache-2.0"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="1.64.0"
TERMUX_PKG_SRCURL=https://github.com/bufbuild/buf/archive/refs/tags/v${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=e485494488ddae5fd0bdc8d7ee8e5b5cc6c266a50db1823d6e92d729dee05275
TERMUX_PKG_AUTO_UPDATE=true
termux_step_make() {
termux_setup_golang
cd "$TERMUX_PKG_SRCDIR"
mkdir -p "${TERMUX_PKG_BUILDDIR}/src/github.com/bufbuild"
cp -a "${TERMUX_PKG_SRCDIR}" "${TERMUX_PKG_BUILDDIR}/src/github.com/bufbuild/buf"
cd "${TERMUX_PKG_BUILDDIR}/src/github.com/bufbuild/buf"
go mod download
go build -ldflags "-s -w" -trimpath ./cmd/buf
}
termux_step_make_install() {
install -Dm700 ${TERMUX_PKG_BUILDDIR}/src/github.com/bufbuild/buf/buf \
$TERMUX_PREFIX/bin/buf
}