aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/open-babel.rb
blob: 2c8b670e502d73ce795b16cf526d595a2bca7926 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
require 'formula'

class OasaPythonModule < Requirement
  def message; <<-EOS.undent
    The oasa Python module is required for some operations.
    It can be downloaded from:
      http://bkchem.zirael.org/oasa_en.html
    EOS
  end
  def satisfied?
    args = %W{/usr/bin/env python -c import\ oasa}
    quiet_system *args
  end
end

class OpenBabel < Formula
  homepage 'http://openbabel.org/'
  url 'http://sourceforge.net/projects/openbabel/files/openbabel/2.2.3/openbabel-2.2.3.tar.gz'
  md5 '7ea8845c54d6d3a9be378c78088af804'

  head 'https://openbabel.svn.sourceforge.net/svnroot/openbabel/openbabel/trunk'

  depends_on OasaPythonModule.new

  def options
    [
      ["--perl", "Perl bindings"],
      ["--python", "Python bindings"],
      ["--ruby", "Ruby bindings"]
    ]
  end

  def install
    args = ["--disable-dependency-tracking",
            "--prefix=#{prefix}"]
    args << '--enable-maintainer-mode' if ARGV.build_head?

    system "./configure", *args
    system "make"
    system "make install"

    ENV['OPENBABEL_INSTALL'] = prefix

    # Install the python bindings
    if ARGV.include? '--python'
      cd 'scripts/python' do
        system "python", "setup.py", "build"
        system "python", "setup.py", "install", "--prefix=#{prefix}"
      end
    end

    # Install the perl bindings.
    if ARGV.include? '--perl'
      cd 'scripts/perl' do
        # because it's not yet been linked, the perl script won't find the newly
        # compiled library unless we pass it in as LD_LIBRARY_PATH.
        ENV['LD_LIBRARY_PATH'] = "lib"
        system 'perl', 'Makefile.PL'
        # With the additional argument "PREFIX=#{prefix}" it puts things in #{prefix} (where perl can't find them).
        # Without, it puts them in /Library/Perl/...
        inreplace "Makefile" do |s|
          # Fix the broken Makefile (-bundle not allowed with -dynamiclib).
          # I think this is a SWIG error, but I'm not sure.
          s.gsub! '-bundle ', ''
          # Don't waste time building PPC version.
          s.gsub! '-arch ppc ', ''
          # Don't build i386 version when libopenbabel can't link to it.
          s.gsub! '-arch i386 ', ''
        end
        system "make"
        system "make test"
        system "make install"
      end
    end

    # Install the ruby bindings.
    if ARGV.include? '--ruby'
      cd 'scripts/ruby' do
        system "ruby", "extconf.rb",
               "--with-openbabel-include=#{include}",
               "--with-openbabel-lib=#{lib}"

        # Don't build i386 version when libopenbabel can't link to it.
        inreplace "Makefile", '-arch i386 ', ''

        # With the following line it puts things in #{prefix} (where ruby can't find them).
        # Without, it puts them in /Library/Ruby/...
        #ENV['DESTDIR']=prefix
        system "make"
        system "make install"
      end
    end
  end
end