2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-24 02:54:00 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class BerkeleyDb < Formula
|
2010-07-22 00:01:11 +00:00
|
|
|
homepage 'http://www.oracle.com/technology/products/berkeley-db/index.html'
|
2012-07-16 05:08:51 +00:00
|
|
|
url 'http://download.oracle.com/berkeley-db/db-5.3.21.tar.gz'
|
|
|
|
sha1 '32e43c4898c8996750c958a90c174bd116fcba83'
|
2010-10-31 19:19:28 +00:00
|
|
|
|
2012-10-28 22:18:57 +00:00
|
|
|
option 'with-java', 'Compile with Java support.'
|
2009-09-24 02:54:00 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
# BerkeleyDB dislikes parallel builds
|
|
|
|
ENV.deparallelize
|
2010-06-30 13:04:17 +00:00
|
|
|
|
2010-10-31 19:19:28 +00:00
|
|
|
args = ["--disable-debug",
|
2012-08-09 05:13:02 +00:00
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--mandir=#{man}",
|
2010-10-31 19:19:28 +00:00
|
|
|
"--enable-cxx"]
|
2012-10-28 22:18:57 +00:00
|
|
|
args << "--enable-java" if build.include? "with-java"
|
2010-10-31 19:19:28 +00:00
|
|
|
|
2009-09-24 02:54:00 +00:00
|
|
|
# BerkeleyDB requires you to build everything from the build_unix subdirectory
|
2012-02-21 06:04:21 +00:00
|
|
|
cd '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
|