aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gdbm.rb
diff options
context:
space:
mode:
authorAdam Vandenberg2009-12-04 17:52:02 -0800
committerMax Howell2009-12-21 18:41:14 +0000
commit0e6c1924541a3237daefeab52f8c6edd6f46f7e2 (patch)
tree93820397a7d893ab13db1f52207da56384429fbd /Library/Formula/gdbm.rb
parent9660cc3f406e5291a06d16e27ad5b2816a771e32 (diff)
downloadhomebrew-0e6c1924541a3237daefeab52f8c6edd6f46f7e2.tar.bz2
Add gdbm 1.8.3
Diffstat (limited to 'Library/Formula/gdbm.rb')
-rw-r--r--Library/Formula/gdbm.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/gdbm.rb b/Library/Formula/gdbm.rb
new file mode 100644
index 000000000..dfbf61e75
--- /dev/null
+++ b/Library/Formula/gdbm.rb
@@ -0,0 +1,13 @@
+require 'formula'
+
+class Gdbm <Formula
+ url 'http://gnu.sixsigmaonline.org/gnu/gdbm/gdbm-1.8.3.tar.gz'
+ homepage 'http://www.gnu.org/software/gdbm/'
+ md5 '1d1b1d5c0245b1c00aff92da751e9aa1'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ inreplace "Makefile", "-o $(BINOWN) -g $(BINGRP)", ""
+ system "make install"
+ end
+end