homebrew-core/Formula/gdbm.rb

39 lines
1.1 KiB
Ruby
Raw Normal View History

2011-03-10 05:11:03 +00:00
class Gdbm < Formula
homepage "https://www.gnu.org/software/gdbm/"
url "https://ftpmirror.gnu.org/gdbm/gdbm-1.11.tar.gz"
mirror "https://ftp.gnu.org/gnu/gdbm/gdbm-1.11.tar.gz"
sha1 "ce433d0f192c21d41089458ca5c8294efe9806b4"
2009-12-05 01:52:02 +00:00
2014-02-22 22:42:44 +00:00
bottle do
cellar :any
2015-02-08 05:16:15 +00:00
revision 2
sha1 "ae6850dce748a51b1d4270ae201dc50eb1a05d24" => :yosemite
sha1 "b6e5a8d874b0a28cf9405e625c0d99799ad78c68" => :mavericks
sha1 "a7786dbb967f0b42d6a25b6e25582270435de6c0" => :mountain_lion
2014-02-22 22:42:44 +00:00
end
2012-08-09 05:35:31 +00:00
option :universal
option "with-libgdbm-compat", "Build libgdbm_compat, a compatibility layer which provides UNIX-like dbm and ndbm interfaces."
2009-12-05 01:52:02 +00:00
def install
2012-08-09 05:35:31 +00:00
ENV.universal_binary if build.universal?
args = %W[
--disable-dependency-tracking
--disable-silent-rules
--prefix=#{prefix}
]
args << "--enable-libgdbm-compat" if build.with? "libgdbm-compat"
system "./configure", *args
system "make", "install"
2009-12-05 01:52:02 +00:00
end
test do
pipe_output("#{bin}/gdbmtool --norc --newdb test", "store 1 2\nquit\n")
assert File.exist?("test")
assert_match /2/, pipe_output("#{bin}/gdbmtool --norc test", "fetch 1\nquit\n")
end
2009-12-05 01:52:02 +00:00
end