aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/berkeley-db.rb
blob: 54db832a3ca779d96c044afdfb759a101ede4f89 (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
require 'formula'

class BerkeleyDb <Formula
  @url='http://download.oracle.com/berkeley-db/db-5.0.21.tar.gz'
  @homepage='http://www.oracle.com/technology/products/berkeley-db/index.html'
  @md5='9a749fd2e98fe15840493ddc34cc66d8'

  aka 'db'

  def install
    # BerkeleyDB dislikes parallel builds
    ENV.deparallelize
    ENV.O3 # takes an hour or more with link time optimisation

    # BerkeleyDB requires you to build everything from the build_unix subdirectory
    Dir.chdir 'build_unix' do
      system "../dist/configure", "--disable-debug",
                                  "--prefix=#{prefix}",
                                  "--mandir=#{man}",
                                  "--enable-cxx",
                                  "--enable-java"

      system "make install"

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