Files
termux-packages/packages/goose/build.sh
termux-pacman-bot bc10820760 bump(main/goose): 3.11.0
This commit has been automatically submitted by Github Actions.
2023-05-04 15:01:44 +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.11.0"
TERMUX_PKG_SRCURL="https://github.com/pressly/goose/archive/v${TERMUX_PKG_VERSION}.tar.gz"
TERMUX_PKG_SHA256=7e0cb6863db15c04d8b25d9414516314181a533f04152ec9e63c55d5bf65ca8a
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"
}