homebrew-core/Formula/berkeley-db.rb

29 lines
885 B
Ruby
Raw Normal View History

require 'formula'
2009-09-24 02:54:00 +00:00
class BerkeleyDb <Formula
2010-07-22 00:01:11 +00:00
url 'http://download.oracle.com/berkeley-db/db-5.0.26.tar.gz'
homepage 'http://www.oracle.com/technology/products/berkeley-db/index.html'
md5 '8723c97c03d12c3afc8333df92d5089a'
2009-09-24 02:54:00 +00:00
def install
# BerkeleyDB dislikes parallel builds
ENV.deparallelize
ENV.O3 # takes an hour or more with link time optimisation
2009-09-24 02:54:00 +00:00
# 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"
2009-09-24 02:54:00 +00:00
system "make install"
2009-12-21 17:53:21 +00:00
# use the standard docs location
doc.parent.mkpath
mv prefix+'docs', doc
2009-09-24 02:54:00 +00:00
end
end
end