blob: 3a96742601273e657818c42b1a348061c47305f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class Cityhash < Formula
homepage 'https://code.google.com/p/cityhash/'
url 'https://cityhash.googlecode.com/files/cityhash-1.1.0.tar.gz'
sha1 '83ce3fd30a6454e1e2b1a531731a76ba74650889'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "install"
end
end
|