aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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