homebrew-core/Formula/berkeley-db.rb

33 lines
921 B
Ruby
Raw Normal View History

require 'formula'
2009-09-24 02:54:00 +00:00
2011-03-10 05:11:03 +00:00
class BerkeleyDb < Formula
2010-10-31 19:19:28 +00:00
url 'http://download.oracle.com/berkeley-db/db-5.1.19.tar.gz'
2010-07-22 00:01:11 +00:00
homepage 'http://www.oracle.com/technology/products/berkeley-db/index.html'
2010-10-31 19:19:28 +00:00
md5 '76fcbfeebfcd09ba0b4d96bfdf8d884d'
def options
[['--without-java', 'Compile without Java support.']]
end
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
2010-10-31 19:19:28 +00:00
args = ["--disable-debug",
"--prefix=#{prefix}", "--mandir=#{man}",
"--enable-cxx"]
args << "--enable-java" unless ARGV.include? "--without-java"
2009-09-24 02:54:00 +00:00
# BerkeleyDB requires you to build everything from the build_unix subdirectory
Dir.chdir 'build_unix' do
2010-10-31 19:19:28 +00:00
system "../dist/configure", *args
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