mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2025-12-27 06:00:10 +00:00
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.12.0"
|
|
TERMUX_PKG_SRCURL=https://github.com/restic/rest-server/archive/v${TERMUX_PKG_VERSION}.tar.gz
|
|
TERMUX_PKG_SHA256=0302785c26f81c8eb1c2799f779053842c1e93fa2f0293bc8ad10b6e391849c3
|
|
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"
|
|
}
|