Files
termux-packages/packages/buf/build.sh
termux-pacman-bot 76a179e2d9 bump(main/buf): 1.27.1
This commit has been automatically submitted by Github Actions.
2023-10-17 18:32:47 +00:00

25 lines
863 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.27.1"
TERMUX_PKG_SRCURL=https://github.com/bufbuild/buf/archive/v${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=ffe3f817527c3c92e26f88d85b8abf2f414071074e30ef2f7597e3e9dc69492c
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
}