berkeley-db: use options dsl

master
Adam Vandenberg 2012-08-08 22:13:02 -07:00
parent f72c7683d2
commit f9729b4d84
1 changed files with 4 additions and 5 deletions

View File

@ -5,18 +5,17 @@ class BerkeleyDb < Formula
url 'http://download.oracle.com/berkeley-db/db-5.3.21.tar.gz'
sha1 '32e43c4898c8996750c958a90c174bd116fcba83'
def options
[['--without-java', 'Compile without Java support.']]
end
option 'without-java', 'Compile without Java support.'
def install
# BerkeleyDB dislikes parallel builds
ENV.deparallelize
args = ["--disable-debug",
"--prefix=#{prefix}", "--mandir=#{man}",
"--prefix=#{prefix}",
"--mandir=#{man}",
"--enable-cxx"]
args << "--enable-java" unless ARGV.include? "--without-java"
args << "--enable-java" unless build.include? "--without-java"
# BerkeleyDB requires you to build everything from the build_unix subdirectory
cd 'build_unix' do