aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/berkeley-db4.rb
blob: 0c2c86fddade5d19c96b5972e3539fc6e352bf6c (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
require 'formula'

class BerkeleyDb4 < Formula
  homepage 'http://www.oracle.com/technology/products/berkeley-db/index.html'
  url 'http://download.oracle.com/berkeley-db/db-4.8.30.tar.gz'
  sha1 'ab36c170dda5b2ceaad3915ced96e41c6b7e493c'

  keg_only "BDB 4.8.30 is provided for software that doesn't compile against newer versions."

  def install
    # BerkeleyDB dislikes parallel builds
    ENV.deparallelize

    args = ["--disable-debug",
            "--prefix=#{prefix}",
            "--mandir=#{man}",
            "--enable-cxx"]

    # BerkeleyDB requires you to build everything from the build_unix subdirectory
    cd 'build_unix' do
      system "../dist/configure", *args
      system "make install"

      # use the standard docs location
      doc.parent.mkpath
      mv prefix+'docs', doc
    end
  end
end