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

echo "Installing OpenBabel libraries"
. /etc/profile
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