homebrew-core/Formula/gdbm.rb
chdiza 9c036bca5c gdbm: Bump version to 1.11
Closes Homebrew/homebrew#25542.

Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
2013-12-30 13:20:58 -08:00

19 lines
563 B
Ruby

require 'formula'
class Gdbm < Formula
homepage 'http://www.gnu.org/software/gdbm/'
url 'http://ftpmirror.gnu.org/gdbm/gdbm-1.11.tar.gz'
mirror 'http://ftp.gnu.org/gnu/gdbm/gdbm-1.11.tar.gz'
sha1 'ce433d0f192c21d41089458ca5c8294efe9806b4'
option :universal
def install
ENV.universal_binary if build.universal?
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}",
"--infodir=#{info}"
system "make install"
end
end