Add QCA builds to deps

This commit is contained in:
Denis Rouzaud 2021-03-24 12:03:12 +01:00 committed by GitHub
parent 80489d601c
commit cd17a857e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,6 +23,22 @@ RUN dnf -y install \
qt6-qtbase-devel \
qt6-qttools-static \
qt6-qtsvg-devel \
qt6-qt5compat-devel \
spatialindex-devel \
sqlite-devel \
unzip
RUN dnf -y install wget openssl-devel && cd /usr/src \
&& wget https://github.com/KDE/qca/archive/refs/heads/qt6.zip \
&& unzip qt6.zip \
&& cd qca-qt6 \
&& cmake -DCMAKE_INSTALL_PREFIX=/usr -GNinja \
&& ninja install
RUN dnf -y install libsecret-devel && cd /usr/src \
&& wget https://github.com/frankosterfeld/qtkeychain/archive/refs/heads/master.zip \
&& unzip master.zip \
&& cd qtkeychain-master \
&& cmake -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_WITH_QT6=ON -GNinja \
&& ninja install