mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-02-14 05:40:52 +00:00
32 lines
850 B
Bash
32 lines
850 B
Bash
TERMUX_PKG_HOMEPAGE=https://github.com/hashicorp/hcl
|
|
TERMUX_PKG_DESCRIPTION="A toolkit for creating structured configuration languages"
|
|
TERMUX_PKG_LICENSE="MPL-2.0"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION="2.24.0"
|
|
TERMUX_PKG_REVISION=1
|
|
TERMUX_PKG_SRCURL=https://github.com/hashicorp/hcl/archive/refs/tags/v${TERMUX_PKG_VERSION}.tar.gz
|
|
TERMUX_PKG_SHA256=0eef23c176aeb7d6f2e7a93aa7bb66405ff38bb407bac0a1ecbab89b09c7c6cf
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
|
|
_HCL_TOOLS="hcldec hclfmt hclspecsuite"
|
|
|
|
termux_step_pre_configure() {
|
|
termux_setup_golang
|
|
export GOPATH=$TERMUX_PKG_BUILDDIR/_go
|
|
mkdir -p $GOPATH
|
|
go mod tidy
|
|
}
|
|
|
|
termux_step_make() {
|
|
for f in $_HCL_TOOLS; do
|
|
go install ./cmd/$f
|
|
done
|
|
}
|
|
|
|
termux_step_make_install() {
|
|
for f in $_HCL_TOOLS; do
|
|
install -Dm700 -t $TERMUX_PREFIX/bin $GOPATH/bin/*/$f
|
|
done
|
|
}
|