2011-03-10 05:11:03 +00:00
|
|
|
class Gdbm < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "GNU database manager"
|
2015-02-08 03:17:52 +00:00
|
|
|
homepage "https://www.gnu.org/software/gdbm/"
|
2015-06-05 22:59:19 +00:00
|
|
|
url "http://ftpmirror.gnu.org/gdbm/gdbm-1.11.tar.gz"
|
2015-02-08 03:17:52 +00:00
|
|
|
mirror "https://ftp.gnu.org/gnu/gdbm/gdbm-1.11.tar.gz"
|
2015-08-03 12:55:31 +00:00
|
|
|
sha256 "8d912f44f05d0b15a4a5d96a76f852e905d051bb88022fcdfd98b43be093e3c3"
|
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
|
2015-02-08 03:17:52 +00:00
|
|
|
option "with-libgdbm-compat", "Build libgdbm_compat, a compatibility layer which provides UNIX-like dbm and ndbm interfaces."
|
2012-06-19 15:59:44 +00:00
|
|
|
|
2009-12-05 01:52:02 +00:00
|
|
|
def install
|
2012-08-09 05:35:31 +00:00
|
|
|
ENV.universal_binary if build.universal?
|
2015-02-08 03:17:52 +00:00
|
|
|
|
|
|
|
args = %W[
|
|
|
|
--disable-dependency-tracking
|
|
|
|
--disable-silent-rules
|
|
|
|
--prefix=#{prefix}
|
|
|
|
]
|
|
|
|
|
|
|
|
args << "--enable-libgdbm-compat" if build.with? "libgdbm-compat"
|
|
|
|
|
|
|
|
system "./configure", *args
|
2014-11-01 15:31:44 +00:00
|
|
|
system "make", "install"
|
2009-12-05 01:52:02 +00:00
|
|
|
end
|
2015-01-04 08:46:34 +00:00
|
|
|
|
|
|
|
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
|