new package: sops (#5997)
This commit is contained in:
parent
3e25fc83a2
commit
baac0b6b0f
20
packages/sops/build.sh
Normal file
20
packages/sops/build.sh
Normal file
@ -0,0 +1,20 @@
|
||||
TERMUX_PKG_HOMEPAGE=https://github.com/mozilla/sops
|
||||
TERMUX_PKG_DESCRIPTION="Simple and flexible tool for managing secrets"
|
||||
TERMUX_PKG_LICENSE="MPL-2.0"
|
||||
TERMUX_PKG_MAINTAINER="Philipp Schmitt @pschmitt"
|
||||
TERMUX_PKG_VERSION=3.6.1
|
||||
TERMUX_PKG_SRCURL="https://github.com/mozilla/sops/archive/v${TERMUX_PKG_VERSION}.tar.gz"
|
||||
TERMUX_PKG_SHA256=bb6611eb70580ff74a258aa8b9713fdcb9a28de5a20ee716fe6b516608a60237
|
||||
|
||||
termux_step_make_install() {
|
||||
termux_setup_golang
|
||||
|
||||
export GOPATH="${TERMUX_PKG_BUILDDIR}"
|
||||
mkdir -p "${GOPATH}/src/go.mozilla.org"
|
||||
cp -a "${TERMUX_PKG_SRCDIR}" "${GOPATH}/src/go.mozilla.org/sops"
|
||||
cd "${GOPATH}/src/go.mozilla.org/sops" || return 9
|
||||
go get -d -v
|
||||
make install
|
||||
|
||||
install -Dm700 "${GOPATH}/bin/"*/sops "${TERMUX_PREFIX}/bin/sops"
|
||||
}
|
Loading…
Reference in New Issue
Block a user