homebrew-core/Formula/gdbm.rb

14 lines
400 B
Ruby
Raw Normal View History

2009-12-05 01:52:02 +00:00
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