37375312b9
In issue https://github.com/termux/termux-packages/issues/6160 I have found that community repo "its-pointless.github.io" specifies us as maintainer for its packages. This is NOT TRUE and potentially misleads people using these packages. Now TERMUX_PKG_MAINTAINER will contain a default value which is neutral and not specify maintainer. So all packages now have to override it to the correct value. [skip ci] %ci:no-build
22 lines
762 B
Bash
22 lines
762 B
Bash
TERMUX_PKG_HOMEPAGE=https://helm.sh
|
|
TERMUX_PKG_DESCRIPTION="Helm helps you manage Kubernetes applications"
|
|
TERMUX_PKG_LICENSE="Apache-2.0"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION=3.4.2
|
|
TERMUX_PKG_SRCURL=https://github.com/helm/helm/archive/v${TERMUX_PKG_VERSION}.tar.gz
|
|
TERMUX_PKG_SHA256=eae87983010fe09501f2fb466866e995fc4e28184b70bba9d41b143a932ddf06
|
|
|
|
termux_step_make() {
|
|
termux_setup_golang
|
|
cd "$TERMUX_PKG_SRCDIR"
|
|
mkdir -p "${TERMUX_PKG_BUILDDIR}/src/github.com/helm"
|
|
cp -a "${TERMUX_PKG_SRCDIR}" "${TERMUX_PKG_BUILDDIR}/src/github.com/helm/helm"
|
|
cd "${TERMUX_PKG_BUILDDIR}/src/github.com/helm/helm"
|
|
make
|
|
}
|
|
|
|
termux_step_make_install() {
|
|
install -Dm700 ${TERMUX_PKG_BUILDDIR}/src/github.com/helm/helm/bin/helm \
|
|
$TERMUX_PREFIX/bin/helm
|
|
}
|