2011-03-10 05:11:03 +00:00
|
|
|
class Cdb < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Create and read constant databases"
|
2016-01-30 16:11:22 +00:00
|
|
|
homepage "https://cr.yp.to/cdb.html"
|
|
|
|
url "https://cr.yp.to/cdb/cdb-0.75.tar.gz"
|
2015-03-25 21:18:39 +00:00
|
|
|
sha256 "1919577799a50c080a8a05a1cbfa5fa7e7abc823d8d7df2eeb181e624b7952c5"
|
2010-08-29 14:27:35 +00:00
|
|
|
|
2015-03-27 13:41:41 +00:00
|
|
|
bottle do
|
2015-10-09 04:18:14 +00:00
|
|
|
cellar :any_skip_relocation
|
|
|
|
revision 1
|
|
|
|
sha256 "48bbaace024d61f6e464c0251cebaae18aaea57f8874ec0e4df41dd15ab81cf4" => :el_capitan
|
|
|
|
sha256 "d37679fe36ab396b9b195ee65da4271320f56afba844cf9167f5b50b0bb1ee11" => :yosemite
|
|
|
|
sha256 "8d79537ee9db01074b1766082626913dee4e1b01b1de1b11975f57e64ca1b0bd" => :mavericks
|
2015-03-27 13:41:41 +00:00
|
|
|
end
|
|
|
|
|
2010-08-29 14:27:35 +00:00
|
|
|
def install
|
2010-09-07 21:34:39 +00:00
|
|
|
inreplace "conf-home", "/usr/local", prefix
|
2015-03-25 21:18:39 +00:00
|
|
|
system "make", "setup"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
record = "+4,8:test->homebrew\n\n"
|
|
|
|
pipe_output("#{bin}/cdbmake db dbtmp", record, 0)
|
|
|
|
assert File.exist? "db"
|
|
|
|
assert_equal(record,
|
2015-10-09 04:35:10 +00:00
|
|
|
pipe_output("#{bin}/cdbdump", (testpath/"db").binread, 0))
|
2010-08-29 14:27:35 +00:00
|
|
|
end
|
|
|
|
end
|