mirror of
https://github.com/termux/termux-packages.git
synced 2025-01-19 08:42:16 +00:00
63664c4afe
This commit has been automatically submitted by Github Actions.
21 lines
625 B
Bash
21 lines
625 B
Bash
TERMUX_PKG_HOMEPAGE="https://github.com/itchyny/bed"
|
|
TERMUX_PKG_DESCRIPTION="Binary editor written in GO"
|
|
TERMUX_PKG_LICENSE="MIT"
|
|
TERMUX_PKG_LICENSE_FILE="LICENSE"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION="0.2.8"
|
|
TERMUX_PKG_SRCURL="https://github.com/itchyny/bed/archive/refs/tags/v$TERMUX_PKG_VERSION.tar.gz"
|
|
TERMUX_PKG_SHA256=2515fd65c718f7aaa549bf9a98cf514102d2ea5f3b1c0437bbcf8bd26fae4d0a
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
|
|
|
|
termux_step_make() {
|
|
termux_setup_golang
|
|
go build -ldflags="-s -w" -o bed ./cmd/bed
|
|
}
|
|
|
|
termux_step_make_install() {
|
|
install -Dm700 -t $TERMUX_PREFIX/bin bed
|
|
}
|