2016-03-26 16:06:29 +00:00
|
|
|
class Sdb < Formula
|
|
|
|
desc "Ondisk/memory hashtable based on CDB."
|
|
|
|
homepage "https://github.com/radare/sdb"
|
|
|
|
url "http://www.radare.org/get/sdb-0.10.1.tar.gz"
|
|
|
|
sha256 "dc17ce4bc6c2a5f2e63a404c3444d7ce4992c735e0ab04c93eb03ef8d965b3fa"
|
|
|
|
|
2016-03-28 13:21:52 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
|
|
|
sha256 "a4d2903fb39d96ee2348ac1f5ee1fd09eab76cedbb47ffa2c76e66b03bfa4d58" => :el_capitan
|
|
|
|
sha256 "bf924a465696ccb15322d4075f420d7d4cd2b710d13832bcd9cc287b80d1326f" => :yosemite
|
|
|
|
sha256 "59f1108403e7a9f469235fe212feeef064735a712024496a1ed8b432eb130316" => :mavericks
|
|
|
|
end
|
|
|
|
|
2016-03-26 16:06:29 +00:00
|
|
|
depends_on "pkg-config" => :build
|
|
|
|
depends_on "vala" => :build
|
|
|
|
depends_on "glib"
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "make"
|
|
|
|
system "make", "install", "PREFIX=#{prefix}"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
system bin/"sdb", testpath/"d", "hello=world"
|
|
|
|
assert_equal "world", shell_output("#{bin}/sdb #{testpath}/d hello").strip
|
|
|
|
end
|
|
|
|
end
|