homebrew-core/Formula/cityhash.rb
Brett Koonce 62ae9e29bb cityhash 1.1.1
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-07-12 20:27:19 -07:00

14 lines
391 B
Ruby

require 'formula'
class Cityhash < Formula
homepage 'https://code.google.com/p/cityhash/'
url 'https://cityhash.googlecode.com/files/cityhash-1.1.1.tar.gz'
sha1 '74342b9161bc762e4c14627a9281bef2d3cb5eed'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "install"
end
end