diff options
author | Nick <nick@somerandomnick.ano> | 2011-10-04 22:39:25 +0000 |
---|---|---|
committer | Nick <nick@somerandomnick.ano> | 2011-10-04 22:39:25 +0000 |
commit | 0d309b4409c2981638b66486879600134ae69159 (patch) | |
tree | e1395616bfa1d2c3b3e20f9fe84537af12c6d7a6 /contrib/splice3/setup-deb | |
parent | 991b826386541721b715b10cd562e55957b026fb (diff) | |
parent | 9d96abc29951a43d8319743f485b48846318496e (diff) | |
download | resdb-0d309b4409c2981638b66486879600134ae69159.tar.gz resdb-0d309b4409c2981638b66486879600134ae69159.zip |
Merge commit '9d96abc29951a43d8319743f485b48846318496e'
Diffstat (limited to 'contrib/splice3/setup-deb')
-rwxr-xr-x | contrib/splice3/setup-deb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/contrib/splice3/setup-deb b/contrib/splice3/setup-deb new file mode 100755 index 0000000..c9e3046 --- /dev/null +++ b/contrib/splice3/setup-deb @@ -0,0 +1,29 @@ +#!/bin/bash +echo 'checking for python2.7' +if which python2.7 >/dev/null; then + : +else + echo 'python2.7 not found. Quiting... :-(' + exit 1 +fi + +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 '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 |