vis
a vi-like editor based on Plan 9's structural regular expressions
git clone https://9o.is/git/vis.git
commit 2b9796794c84c557b32c485986133c13a0936b8d parent 84bf22e538180ee9e7ed1dbb2001581900a5d046 Author: Marc André Tanner <mat@brain-dump.org> Date: Mon, 19 Mar 2018 19:34:05 +0100 build: build standalone binary against latest Alpine packages Diffstat:
| M | Makefile | | | 3 | ++- |
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/Makefile b/Makefile @@ -84,9 +84,10 @@ vis-single: vis-single.c vis-single-payload.inc ${STRIP} $@ docker: clean - docker rm -f vis || true docker build -t vis . docker run --rm -d --name vis vis tail -f /dev/null + docker exec vis apk update + docker exec vis apk upgrade docker cp . vis:/tmp/vis docker exec vis sed -i '/^VERSION/c VERSION = $(VERSION)' Makefile docker exec vis ./configure CC='cc --static'