vis

a vi-like editor based on Plan 9's structural regular expressions

git clone https://9o.is/git/vis.git

commit f8e20cfa30be62f287d3a16f1a9a4d0c8f59b241
parent 76c8e245577ee02d2131f0192d46b8aab360b549
Author: Christian Hesse <mail@eworm.de>
Date:   Thu, 16 Jan 2020 17:37:48 +0100

build: install static libacl for docker builds

Commit 463c3a7c92f5304122fe287ededcbc341454c542 updated Alpine docker
image, however this broke building with acl support. The static libacl
moved to its own package, so just install that.

Diffstat:
MDockerfile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Dockerfile b/Dockerfile @@ -11,7 +11,7 @@ ENV DIR /tmp/vis WORKDIR $DIR RUN apk update && apk add musl-dev fortify-headers gcc make libtermkey-dev \ ncurses-dev ncurses-static lua5.3-dev lua5.3-lpeg lua-lpeg-dev \ - acl-dev xz-dev tar xz wget ca-certificates + acl-static acl-dev xz-dev tar xz wget ca-certificates RUN sed -i 's/Libs: /Libs: -L${INSTALL_CMOD} /' /usr/lib/pkgconfig/lua5.3.pc RUN mv /usr/lib/lua/5.3/lpeg.a /usr/lib/lua/5.3/liblpeg.a RUN sed -i 's/-ltermkey/-ltermkey -lunibilium/' /usr/lib/pkgconfig/termkey.pc