9c036bca5c
Closes Homebrew/homebrew#25542. Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
19 lines
563 B
Ruby
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
|