Files
termux-packages/packages/vale/build.sh
termux-pacman-bot acf3ece787 bump(main/vale): 2.25.2
This commit has been automatically submitted by Github Actions.
2023-04-28 00:45:25 +00:00

26 lines
789 B
Bash

TERMUX_PKG_HOMEPAGE=https://vale.sh
TERMUX_PKG_DESCRIPTION="A syntax-aware linter for prose built with speed and extensibility in mind"
TERMUX_PKG_LICENSE="MIT"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="2.25.2"
TERMUX_PKG_SRCURL=https://github.com/errata-ai/vale/archive/refs/tags/v${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=a85aa7012bf058185f2d66dd96bc594b80303ebb56dd42add8f6fe3c948f2677
TERMUX_PKG_BUILD_IN_SRC=true
TERMUX_PKG_AUTO_UPDATE=true
termux_step_pre_configure() {
termux_setup_golang
go mod init || :
go mod tidy
}
termux_step_make() {
cd "$TERMUX_PKG_SRCDIR"/cmd/vale
go build -o vale -ldflags="-s -w -X 'main.version=${TERMUX_PKG_VERSION}'"
}
termux_step_make_install() {
install -Dm700 -t "${TERMUX_PREFIX}"/bin "$TERMUX_PKG_SRCDIR"/cmd/vale/vale
}