aboutsummaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/obscuren/qml/cmd/ubuntu-touch/setup.sh
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2015-06-25 23:18:42 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2015-06-25 23:18:42 +0800
commitb0a5be4495962c291a25cbea793e43bad0781510 (patch)
treee058201e7b29c3cb8efd710e20ec1e1f97f64368 /Godeps/_workspace/src/github.com/obscuren/qml/cmd/ubuntu-touch/setup.sh
parente64625aa8215985c85f97f914a98db081e07714f (diff)
parente9c0b5431cbd7430ddec9fd17983241018fd8a55 (diff)
downloadgo-tangerine-b0a5be4495962c291a25cbea793e43bad0781510.tar
go-tangerine-b0a5be4495962c291a25cbea793e43bad0781510.tar.gz
go-tangerine-b0a5be4495962c291a25cbea793e43bad0781510.tar.bz2
go-tangerine-b0a5be4495962c291a25cbea793e43bad0781510.tar.lz
go-tangerine-b0a5be4495962c291a25cbea793e43bad0781510.tar.xz
go-tangerine-b0a5be4495962c291a25cbea793e43bad0781510.tar.zst
go-tangerine-b0a5be4495962c291a25cbea793e43bad0781510.zip
Merge pull request #1321 from karalabe/cut-it-open-3000
Metrics collecting and reporting support
Diffstat (limited to 'Godeps/_workspace/src/github.com/obscuren/qml/cmd/ubuntu-touch/setup.sh')
-rw-r--r--Godeps/_workspace/src/github.com/obscuren/qml/cmd/ubuntu-touch/setup.sh41
1 files changed, 0 insertions, 41 deletions
diff --git a/Godeps/_workspace/src/github.com/obscuren/qml/cmd/ubuntu-touch/setup.sh b/Godeps/_workspace/src/github.com/obscuren/qml/cmd/ubuntu-touch/setup.sh
deleted file mode 100644
index 1d0454110..000000000
--- a/Godeps/_workspace/src/github.com/obscuren/qml/cmd/ubuntu-touch/setup.sh
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/bin/sh
-
-set -e
-
-if [ "$USER" != "root" ]; then
- echo 'This script must be run as root.'
- exit 1
-fi
-
-echo 'Remounting root as read-write ------------------------------------------------'
-
-mount -o remount,rw /
-
-echo 'Installing Go and dependencies -----------------------------------------------'
-
-apt-get update
-apt-get install -y \
- golang-go g++ git pkg-config ubuntu-app-launch\
- qtbase5-private-dev qtdeclarative5-private-dev libqt5opengl5-dev
-apt-get clean
-
-echo 'Setting up environment for phablet user --------------------------------------'
-
-echo 'export GOPATH=$HOME' >> ~phablet/.bash_profile
-
-echo 'Fetching the qml package -----------------------------------------------------'
-
-su -l phablet -c 'go get gopkg.in/qml.v0'
-
-echo 'Installing the .desktop file for the particle example ------------------------'
-
-APP_ID='gopkg.in.qml.particle-example'
-cp ~phablet/src/gopkg.in/qml.v*/cmd/ubuntu-touch/particle.desktop ~phablet/.local/share/applications/$APP_ID.desktop
-
-echo 'Building and launching particle example --------------------------------------'
-
-su -l phablet -c 'cd $HOME/src/gopkg.in/qml.v0/examples/particle; go build'
-
-echo 'Launching particle example ---------------------------------------------------'
-
-su -l phablet -c "ubuntu-app-launch $APP_ID"