first draft

This commit is contained in:
Bachir Soussi Chiadmi
2017-03-24 19:51:37 +01:00
commit 2ad8fea86c
6 changed files with 296 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
#!/bin/bash
# install deps
sudo pacman -S --needed --noconfirm base-devel ninja qt5
mkdir ospkit.src
# installing qtwebkit ospkit branch
cd ospkit/
git clone -o github -b ospkit --single-branch github:aleray/webkit.git
cd webkit/
WEBKIT_OUTPUTDIR=`pwd`/build/qt Tools/Scripts/build-webkit --qt --release
cd build/qt/Release/
sudo ninja install
cd ../../../../
# installing ospkit
git clone -o constant-gitlab http://gitlab.constantvzw.org/osp/tools.ospkit.git
cd tools.ospkit/src/
qmake
make
cd ../../
ln -s /tools.ospkit/src/OSPKit OSPKit