1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-12-26 04:17:33 +00:00

Switch to curl, install gfortron (sigh).

This commit is contained in:
Brenden Matthews 2021-02-27 13:10:06 -06:00
parent 36fab8594c
commit 7b7801619d
No known key found for this signature in database
GPG Key ID: B49ABB7270D9D4FD

View File

@ -6,6 +6,8 @@ RUN apt-get update \
audacious-dev \
ca-certificates \
clang \
curl \
gfortran \
git \
libaudclient-dev \
libcairo2-dev \
@ -31,14 +33,13 @@ RUN apt-get update \
libxnvctrl-dev \
make \
patch \
wget \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
# Compile CMake, we need the latest because the bug here (for armv7 builds):
# https://gitlab.kitware.com/cmake/cmake/-/issues/20568
WORKDIR /cmake
RUN wget -q https://github.com/Kitware/CMake/releases/download/v3.19.6/cmake-3.19.6.tar.gz \
RUN curl -Lq https://github.com/Kitware/CMake/releases/download/v3.19.6/cmake-3.19.6.tar.gz -o cmake-3.19.6.tar.gz \
&& tar xf cmake-3.19.6.tar.gz \
&& cd cmake-3.19.6 \
&& ./bootstrap \