Browse Source

Added neovim lua dependencies

android-5
Robert Valik 9 years ago
parent
commit
52135097c5
  1. 8
      Dockerfile

8
Dockerfile

@ -32,6 +32,8 @@ RUN apt-get update && apt-get install -y \
libssl-dev \
libtool \
libtool-bin \
lua-lpeg \
loarocks \
lzip \
m4 \
pkg-config \
@ -58,7 +60,11 @@ RUN cd /tmp && \
RUN mkdir -p /data/data/com.termux/files/usr && mkdir -p /root/termux-packages && \
# This link is needed for building git package
mkdir -p /system/bin && \
ln -s /bin/sh /system/bin/sh
ln -s /bin/sh /system/bin/sh && \
# Install neovim dependencies
luarocks install lpeg && \
luarocks install lua-MessagePack && \
luarocks install luabitop
ADD *.py /root/termux-packages/
ADD *.sh /root/termux-packages/

Loading…
Cancel
Save