moved scripts to bin/, added gulp tasks

This commit is contained in:
Bachir Soussi Chiadmi
2017-03-26 12:39:37 +02:00
parent 55c06ee81a
commit b68f53c0b0
7 changed files with 51 additions and 4 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