blob: 53526f844c5cf3e58919a978423a56df312b1a54 (
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.1.tar.gz'
  sha1 '74342b9161bc762e4c14627a9281bef2d3cb5eed'
  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make", "install"
  end
end
 |