mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-01-06 10:53:21 +00:00
for the same reason as commit 40ac9ec3b43b106ec4b45b830862dfb17ff96a3e. Unable to build all at once in CI due to limited disk space. Builds are going to be triggered manually, divided into several pieces. %ci:no-build
21 lines
491 B
Bash
21 lines
491 B
Bash
TERMUX_PKG_HOMEPAGE=https://github.com/akavel/up
|
|
TERMUX_PKG_DESCRIPTION="Helps interactively and incrementally explore textual data in Linux"
|
|
TERMUX_PKG_LICENSE="Apache-2.0"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION=0.4
|
|
TERMUX_PKG_REVISION=1
|
|
TERMUX_PKG_SRCURL=git+https://github.com/akavel/up
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
|
|
termux_step_make() {
|
|
termux_setup_golang
|
|
|
|
go mod init || :
|
|
go mod tidy
|
|
go build
|
|
}
|
|
|
|
termux_step_make_install() {
|
|
install -Dm700 -t $TERMUX_PREFIX/bin up
|
|
}
|