summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRamón M. Gómez <ramongomez@us.es>2019-09-23 10:16:51 +0200
committerRamón M. Gómez <ramongomez@us.es>2019-09-23 10:16:51 +0200
commit34994c72428fcdf2afbdc2b5f00acd1230a42451 (patch)
tree7d4930bddfc2a07f3aa6c5b06aa2d162cf83542d
parentf998ebd6e5fe777687d5eeb3c9e4164299fdb6fd (diff)
#919: Fix Qt download URL to build the Browser.
-rw-r--r--installer/vagrant/Vagrantfile-browser-vbox9
1 files changed, 4 insertions, 5 deletions
diff --git a/installer/vagrant/Vagrantfile-browser-vbox b/installer/vagrant/Vagrantfile-browser-vbox
index 9295d1d2..8e3abebf 100644
--- a/installer/vagrant/Vagrantfile-browser-vbox
+++ b/installer/vagrant/Vagrantfile-browser-vbox
@@ -21,17 +21,17 @@ dpkg-reconfigure -fnoninteractive console-setup
# Install main dependencies.
apt-get update
apt-get install -y build-essential gettext libssl-dev libucommon-dev libxtst-dev subversion
-# Compile Qt-Embedded 4.8 (aceptar la licencia Open Source).
-wget http://download.qt.io/official_releases/qt/4.8/4.8.7/qt-everywhere-opensource-src-4.8.7.tar.gz
+# Compile Qt-Embedded 4.8 (accept Open Source license).
+wget http://download.qt.io/archive/qt/4.8/4.8.7/qt-everywhere-opensource-src-4.8.7.tar.gz
tar xvzf qt-everywhere-opensource-src-4.8.7.tar.gz
cd qt-everywhere-opensource-src-4.8.7
echo "yes" | ./configure -opensource -embedded x86 -webkit -openssl -qt-gfx-vnc -qvfb -prefix /usr/local/ -nomake demos -nomake examples
make
make install
-# Compile Browser.
+# Compile the Browser.
BRANCH="devel"
svn export "https://github.com/opengnsys/OpenGnsys/branches/$BRANCH/client/browser" ../browser
-cd browser
+cd ../browser
qmake browser.pro
make
strip browser
@@ -64,7 +64,6 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
vb.name = "ogBrowser"
vb.memory = VMMEM
vb.cpus = VMCPUS
- vb.gui = true
end
# VM base and host name.
br.vm.box = "ubuntu/trusty32"