aboutsummaryrefslogtreecommitdiffstats
path: root/org.openembedded.bc.ui/scripts/bug_install.sh
diff options
context:
space:
mode:
Diffstat (limited to 'org.openembedded.bc.ui/scripts/bug_install.sh')
-rw-r--r--org.openembedded.bc.ui/scripts/bug_install.sh24
1 files changed, 0 insertions, 24 deletions
diff --git a/org.openembedded.bc.ui/scripts/bug_install.sh b/org.openembedded.bc.ui/scripts/bug_install.sh
deleted file mode 100644
index 89e97fe..0000000
--- a/org.openembedded.bc.ui/scripts/bug_install.sh
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/bash
-# Installation script for BUG R1.4
-# Adapted from instructions available at http://wiki.openembedded.net/index.php/Getting_started
-# This script can be executable as shell script after substituting {| |} variables with real values.
-# 4/3/2009 Ken Gilmer
-
-# These are the variables that are queried in the UI. The following lines are parsed by the install wizard.
-# {|D|Install Directory|R|${HOME}/oe||}
-# {|T|Init Script|R|reinstate-build-env||}
-
-# System Check
-which git
-which svn
-which python
-
-# Directory Setup
-[ -d ${Install Directory} ] || mkdir -p ${Install Directory}
-cd ${Install Directory}
-
-# Installing from Bug Labs SVN repository
-svn export -r HEAD svn://svn.buglabs.net/bug/tags/releases/R1.4/com.buglabs.build.oe
-mv com.buglabs.build.oe/* .
-rm -Rf com.buglabs.build.oe
-