summaryrefslogtreecommitdiff
path: root/openbabel.sh
blob: a1d90a4727cd266786e06c8dd6db1950506752a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

echo "Installing OpenBabel libraries"
. /etc/profile
dir=`pwd`
cd /tmp
wget -O - "http://downloads.sourceforge.net/project/openbabel/openbabel/2.2.3/openbabel-2.2.3.tar.gz?use_mirror=kent" | tar zxv
cd openbabel-2.2.3/
./configure
make install
cd scripts/ruby/
ruby extconf.rb --with-openbabel-include=/usr/local/include/openbabel-2.0
make install
ldconfig
cd $dir