diff options
| author | Adam Vandenberg | 2009-12-04 17:52:02 -0800 | 
|---|---|---|
| committer | Max Howell | 2009-12-21 18:41:14 +0000 | 
| commit | 0e6c1924541a3237daefeab52f8c6edd6f46f7e2 (patch) | |
| tree | 93820397a7d893ab13db1f52207da56384429fbd /Library/Formula/gdbm.rb | |
| parent | 9660cc3f406e5291a06d16e27ad5b2816a771e32 (diff) | |
| download | homebrew-0e6c1924541a3237daefeab52f8c6edd6f46f7e2.tar.bz2 | |
Add gdbm 1.8.3
Diffstat (limited to 'Library/Formula/gdbm.rb')
| -rw-r--r-- | Library/Formula/gdbm.rb | 13 | 
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  | 
