2013-05-10 15:53:18 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Cityhash < Formula
|
|
|
|
homepage 'https://code.google.com/p/cityhash/'
|
2013-07-12 22:04:27 +00:00
|
|
|
url 'https://cityhash.googlecode.com/files/cityhash-1.1.1.tar.gz'
|
|
|
|
sha1 '74342b9161bc762e4c14627a9281bef2d3cb5eed'
|
2013-05-10 15:53:18 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
|
|
|
|
|
|
|
system "make", "install"
|
|
|
|
end
|
|
|
|
end
|