26 lines
866 B
Bash
26 lines
866 B
Bash
TERMUX_PKG_HOMEPAGE=https://github.com/xyproto/o
|
|
TERMUX_PKG_DESCRIPTION="Small, fast and limited text editor"
|
|
TERMUX_PKG_LICENSE="MIT"
|
|
TERMUX_PKG_MAINTAINER="Alexander F. Rødseth <xyproto@archlinux.org>"
|
|
TERMUX_PKG_VERSION=2.34.1
|
|
TERMUX_PKG_SRCURL=https://github.com/xyproto/o/archive/$TERMUX_PKG_VERSION.tar.gz
|
|
TERMUX_PKG_SHA256=596de0c527a53a3a6b73ec0744358e9d3c9817147846c458f12df28a599c462a
|
|
TERMUX_PKG_BREAKS="o"
|
|
TERMUX_PKG_REPLACES="o"
|
|
|
|
termux_step_make() {
|
|
termux_setup_golang
|
|
|
|
export GOPATH=$TERMUX_PKG_BUILDDIR
|
|
mkdir -p "$GOPATH"/src/github.com/xyproto
|
|
ln -sf "$TERMUX_PKG_SRCDIR" "$GOPATH"/src/github.com/xyproto/o
|
|
|
|
cd "$GOPATH"/src/github.com/xyproto/o
|
|
go build
|
|
}
|
|
|
|
termux_step_make_install() {
|
|
install -Dm700 -t "$TERMUX_PREFIX"/bin "$GOPATH"/src/github.com/xyproto/o/o
|
|
install -Dm600 -t "$TERMUX_PREFIX"/share/man/man1 "$TERMUX_PKG_SRCDIR"/o.1
|
|
}
|