0
0
mirror of https://github.com/termux/termux-packages.git synced 2025-03-03 05:38:11 +00:00
2025-02-25 21:49:55 +08:00

32 lines
985 B
Bash

TERMUX_PKG_HOMEPAGE=https://github.com/xo/usql
TERMUX_PKG_DESCRIPTION="A universal command-line interface for SQL databases"
TERMUX_PKG_LICENSE="MIT"
TERMUX_PKG_MAINTAINER="@flipee"
TERMUX_PKG_VERSION="0.19.17"
TERMUX_PKG_SRCURL=https://github.com/xo/usql/archive/v$TERMUX_PKG_VERSION.tar.gz
TERMUX_PKG_SHA256=9adcb4d64de3867509f25ac4caaa8bef46d611eb1de06ad4e1348c209b1d39ae
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_BUILD_IN_SRC=true
termux_step_make() {
termux_setup_golang
local tags="most no_adodb no_duckdb"
if [ "${TERMUX_ARCH}" = "arm" ] || [ "${TERMUX_ARCH}" = "i686" ]; then
tags="$tags no_netezza no_chai"
fi
go build \
-trimpath \
-tags="$tags" \
-ldflags="-X github.com/xo/usql/text.CommandName=usql
-X github.com/xo/usql/text.CommandVersion=$TERMUX_PKG_VERSION" \
-o usql
}
termux_step_make_install() {
install -Dm755 "$TERMUX_PKG_SRCDIR/usql" -t "$TERMUX_PREFIX/bin"
install -Dm644 "$TERMUX_PKG_SRCDIR/README.md" -t "$TERMUX_PREFIX/share/doc/usql"
}