mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
AppImage: Fix missing libssl1.1
Add ssl to the AppImage build. Add helper script to fetch required dependancies. Update docker build container used. Signed-off-by: Paul Buxton <paubuxton.mail@googlemail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
b2230855e6
commit
4b391c448d
4 changed files with 15 additions and 2 deletions
|
@ -59,6 +59,11 @@ RUN mkdir dbus-1.12.16/build && \
|
|||
make install && \
|
||||
ldconfig
|
||||
|
||||
ADD OpenSSL_1_1_1.tar.gz .
|
||||
RUN cd /openssl-OpenSSL_1_1_1 && \
|
||||
./config --prefix=/usr/local/ssl --openssldir=/usr/local/ssl shared zlib && \
|
||||
make && mkdir -p /ssllibs && cp *.so /ssllibs && cd / && rm -rf openssl-OpenSSL_1_1_1
|
||||
|
||||
# try to remove some of the packages we no longer need
|
||||
RUN apt-get remove -y libqt5core5a libqt5dbus5 libqt5gui5 ruby openssh-client
|
||||
|
||||
|
@ -68,4 +73,4 @@ RUN git clone git://github.com/Subsurface-divelog/subsurface
|
|||
RUN bash -e -x ./subsurface/scripts/build.sh -desktop -create-appdir -build-with-webkit
|
||||
|
||||
# remove the source, but keep the install-root
|
||||
RUN rm -rf subsurface libgit2 googlemaps grantlee
|
||||
RUN rm -rf subsurface libgit2 googlemaps grantlee
|
Loading…
Add table
Add a link
Reference in a new issue