mirror of
https://github.com/termux/termux-packages.git
synced 2025-01-31 21:22:27 +00:00
f97955f1ec
This commit has been automatically submitted by Github Actions.
24 lines
685 B
Bash
24 lines
685 B
Bash
TERMUX_PKG_HOMEPAGE=https://restic.net/
|
|
TERMUX_PKG_DESCRIPTION="Restic's REST backend API server"
|
|
TERMUX_PKG_LICENSE="BSD 2-Clause"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION="0.13.0"
|
|
TERMUX_PKG_SRCURL=https://github.com/restic/rest-server/archive/v${TERMUX_PKG_VERSION}.tar.gz
|
|
TERMUX_PKG_SHA256=bc2f57f07fc7affa7d419b8034f2bb7638c14976505966c93f7d75e90ad0d460
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
|
|
termux_step_make() {
|
|
termux_setup_golang
|
|
_GOARCH="${GOARCH}"
|
|
unset GOOS GOARCH
|
|
go run build.go \
|
|
--enable-cgo \
|
|
--goos android \
|
|
--goarch "${_GOARCH}"
|
|
}
|
|
|
|
termux_step_make_install() {
|
|
install -Dm755 rest-server "${TERMUX_PREFIX}/bin/rest-server"
|
|
}
|