blob: 014e831524f88145247c83371495ac7637160c6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
require 'brewkit'
class BerkeleyDb <Formula
@url='http://download.oracle.com/berkeley-db/db-4.8.24.tar.gz'
@homepage='http://www.oracle.com/technology/products/berkeley-db/index.html'
@md5='147afdecf438ff99ade105a5272db158'
def install
# BerkeleyDB dislikes parallel builds
ENV.deparallelize
# BerkeleyDB requires you to build everything from the build_unix subdirectory
Dir.chdir 'build_unix' do
system "../dist/configure", "--disable-debug",
"--prefix=#{prefix}",
"--mandir=#{prefix}/share/man"
system "make install"
end
end
end
|