mirror of
https://github.com/termux/termux-packages.git
synced 2025-01-31 21:22:27 +00:00
c767128a74
This commit has been automatically submitted by Github Actions.
25 lines
654 B
Bash
25 lines
654 B
Bash
TERMUX_PKG_HOMEPAGE=https://github.com/zu1k/nali
|
|
TERMUX_PKG_DESCRIPTION="An offline tool for querying IP geographic information and CDN provider"
|
|
TERMUX_PKG_LICENSE="MIT"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION="0.8.1"
|
|
TERMUX_PKG_SRCURL=https://github.com/zu1k/nali/archive/v${TERMUX_PKG_VERSION}.tar.gz
|
|
TERMUX_PKG_SHA256=8918e4c1c720dad1590a42fa04c5fea1ec862148127206e716daa16c1ce3561c
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
TERMUX_PKG_AUTO_UPDATE=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 nali
|
|
}
|