diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/cityhash.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/cityhash.rb b/Library/Formula/cityhash.rb new file mode 100644 index 000000000..3a9674260 --- /dev/null +++ b/Library/Formula/cityhash.rb @@ -0,0 +1,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 |
