From e1c76293c3289a919f24edc1bd6956dbb8bc8ee0 Mon Sep 17 00:00:00 2001 From: Xavier Del Campo Romero Date: Thu, 21 Dec 2023 22:30:58 +0100 Subject: Add Ncurses-6.3 --- Ncurses/6.3/Dockerfile | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Ncurses/6.3/Dockerfile diff --git a/Ncurses/6.3/Dockerfile b/Ncurses/6.3/Dockerfile new file mode 100644 index 0000000..1557aeb --- /dev/null +++ b/Ncurses/6.3/Dockerfile @@ -0,0 +1,24 @@ +FROM alpine +RUN apk update && apk add \ + make \ + gcc \ + musl-dev \ + wget +RUN wget https://invisible-island.net/datafiles/release/ncurses.tar.gz +RUN tar -xf ncurses.tar.gz +WORKDIR /ncurses-6.3 +ARG PREFIX=/opt/spm/ncurses-6.3 +RUN ./configure \ + --prefix=$PREFIX \ + --without-ada \ + --without-manpages \ + --without-tests \ + --without-cxx \ + --without-cxx-binding \ + --disable-root-access \ + --disable-root-environ \ + --enable-overwrite \ + --enable-shared=no \ + CFLAGS='-ffunction-sections -fdata-sections -Os' +RUN make -j$(nproc --all) +RUN make install -- cgit v1.2.3