0
0
mirror of https://github.com/termux/termux-packages.git synced 2025-09-20 04:09:44 +00:00
Files
termux-packages/packages/skate/build.sh
Termux Github Actions 4042198586 bump(main/skate): 1.0.1
This commit has been automatically submitted by Github Actions.
2025-03-06 18:24:36 +00:00

25 lines
636 B
Bash

TERMUX_PKG_HOMEPAGE=https://github.com/charmbracelet/skate
TERMUX_PKG_DESCRIPTION="A personal key-value store"
TERMUX_PKG_LICENSE="MIT"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="1.0.1"
TERMUX_PKG_SRCURL=https://github.com/charmbracelet/skate/archive/refs/tags/v${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=f844fd980e1337be0f1bc321e58e48680fe3855e17c6c334ed8b22b9059949d2
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_BUILD_IN_SRC=true
termux_step_pre_configure() {
termux_setup_golang
go mod init || :
go mod tidy
}
termux_step_make() {
go build
}
termux_step_make_install() {
install -Dm700 -t $TERMUX_PREFIX/bin skate
}