2013-05-10 15:53:18 +00:00
|
|
|
class Cityhash < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Hash functions for strings"
|
2015-08-03 12:55:31 +00:00
|
|
|
homepage "https://code.google.com/p/cityhash/"
|
|
|
|
url "https://cityhash.googlecode.com/files/cityhash-1.1.1.tar.gz"
|
|
|
|
sha256 "76a41e149f6de87156b9a9790c595ef7ad081c321f60780886b520aecb7e3db4"
|
2013-05-10 15:53:18 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
|
|
|
|
|
|
|
system "make", "install"
|
|
|
|
end
|
|
|
|
end
|