aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMatt Stump2013-05-10 08:53:18 -0700
committerMisty De Meo2013-05-14 10:18:33 -0500
commit2cc55a9622de32488bbc05e40bf6eab854cf9dea (patch)
treefbf28d25d29e1fc3aa46c9159f85bb7684f20fb2 /Library/Formula
parentc2cc58163b54a9ea2ee56febfc722396079c5b9a (diff)
downloadhomebrew-2cc55a9622de32488bbc05e40bf6eab854cf9dea.tar.bz2
cityhash 1.1.0
Closes #19718. Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/cityhash.rb14
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