docker/drawpile/dpserver/build-deps.sh
2020-04-08 19:34:00 -05:00

19 lines
329 B
Bash
Executable file

#!/usr/bin/env sh
wget https://github.com/KDE/extra-cmake-modules/archive/v5.55.0.zip -O ecm.zip
wget https://github.com/KDE/karchive/archive/v5.55.0.zip -O karchive.zip
unzip ecm.zip
unzip karchive.zip
cd /build/extra-cmake-modules-*
cmake .
make install
cd /build/karchive-*
mkdir build
cd build
cmake ..
make
make install