diff options
author | resdb <resdb@d3v11-VM.(none)> | 2011-10-22 14:43:31 -0500 |
---|---|---|
committer | resdb <resdb@d3v11-VM.(none)> | 2011-10-22 14:43:31 -0500 |
commit | fd78bbc2ba54cad2ae26019669c74a2c05464c9f (patch) | |
tree | f5ac78dd6ffb772e1355118a36cb6d40856d16d8 /contrib/splice3/setup-deb | |
parent | d65d5158288dd72b993fd2d44239c3f3d0247976 (diff) | |
download | resdb-fd78bbc2ba54cad2ae26019669c74a2c05464c9f.tar.gz resdb-fd78bbc2ba54cad2ae26019669c74a2c05464c9f.zip |
removed splice3 and added splicex
Diffstat (limited to 'contrib/splice3/setup-deb')
-rwxr-xr-x | contrib/splice3/setup-deb | 34 |
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 |