Alexander F. Rødseth
5 years ago
committed by
GitHub
1 changed files with 23 additions and 0 deletions
@ -0,0 +1,23 @@ |
|||||
|
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.17.0 |
||||
|
TERMUX_PKG_SRCURL=https://github.com/xyproto/o/archive/$TERMUX_PKG_VERSION.tar.gz |
||||
|
TERMUX_PKG_SHA256=c97e1b4474727f273bd56c2b56ba54ffbe13ae2b8f8e32508b487ae93c178765 |
||||
|
|
||||
|
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 |
||||
|
} |
Loading…
Reference in new issue