summaryrefslogtreecommitdiff
path: root/contrib/splice3/setup-deb
diff options
context:
space:
mode:
authorNick <nick@somerandomnick.ano>2011-10-26 23:17:56 +0000
committerNick <nick@somerandomnick.ano>2011-10-26 23:17:56 +0000
commit60d3ec50826f9c474eb9ca006460934c9704782f (patch)
tree675f681d27e59414b05bddc5bd5c713a40d0438e /contrib/splice3/setup-deb
parent171d8cf3ffca91d1a162215d93da9472ab06c2ff (diff)
parentd8def0eb06465680919d7dc14daa287e7d065813 (diff)
downloadresdb-60d3ec50826f9c474eb9ca006460934c9704782f.tar.gz
resdb-60d3ec50826f9c474eb9ca006460934c9704782f.zip
Merge commit 'd8def0eb06465680919d7dc14daa287e7d065813'
Diffstat (limited to 'contrib/splice3/setup-deb')
-rwxr-xr-xcontrib/splice3/setup-deb34
1 files changed, 0 insertions, 34 deletions
diff --git a/contrib/splice3/setup-deb b/contrib/splice3/setup-deb
deleted file mode 100755
index bf8dd01..0000000
--- a/contrib/splice3/setup-deb
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/bin/bash
-
-echo 'checking for man'
-if which man >/dev/null; then
- :
-else
- echo 'man not found. Quiting... :-('
- exit 1
-fi
-
-echo 'checking for dpkg'
-if which dpkg >/dev/null; then
- :
-else
- echo 'dpkg not found. Quiting... :-('
- exit 1
-fi
-
-echo 'checking for python2.7'
-CheckPython=`dpkg --get-selections python2.7`
-if [[ $CheckPython == *deinstall* ]]; then
- echo 'python2.7 not found. Quiting... :-('
- exit 1
-elif [[ $CheckPython == '' ]]; then
- echo 'python2.7 not found. Quiting... :-('
- exit 1
-else
- :
-fi
-
-echo 'configuring path to python2.7'
-PYPATH=`which python2.7`
-sed -e s^PYTHON^"$PYPATH"^g LINUX/splice3.py >LINUX/splice3.cp
-sed -e s^PYTHON^"$PYPATH"^g LINUX/splice3-deshadow.py >LINUX/splice3-deshadow.cp