0
0
mirror of https://github.com/termux/termux-packages.git synced 2025-03-04 05:59:06 +00:00
Termux Github Actions b3ac848bd8 bump(main/goose): 3.24.1
This commit has been automatically submitted by Github Actions.
2025-01-07 18:12:34 +00:00

28 lines
801 B
Bash

TERMUX_PKG_HOMEPAGE=https://pressly.github.io/goose
TERMUX_PKG_DESCRIPTION="A database migration tool. Supports SQL migrations and Go functions."
TERMUX_PKG_LICENSE="MIT"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="3.24.1"
TERMUX_PKG_SRCURL="https://github.com/pressly/goose/archive/v${TERMUX_PKG_VERSION}.tar.gz"
TERMUX_PKG_SHA256=d8a9d66ce09dae81911960ed82a0bed5099319becd603e895239e2abe17c81c1
TERMUX_PKG_BUILD_IN_SRC=true
TERMUX_PKG_AUTO_UPDATE=true
termux_step_pre_configure() {
termux_setup_golang
go mod tidy
}
termux_step_make() {
go build -o goose ./cmd/goose
}
termux_step_make_install() {
install -Dm700 -t "${TERMUX_PREFIX}"/bin goose
}
termux_step_install_license() {
install -Dm600 -t "${TERMUX_PREFIX}/share/doc/${TERMUX_PKG_NAME}" \
"${TERMUX_PKG_SRCDIR}/LICENSE"
}