homebrew-core/Formula/nutcracker.rb

32 lines
1.1 KiB
Ruby

class Nutcracker < Formula
desc "Proxy for memcached and redis"
homepage "https://github.com/twitter/twemproxy"
url "https://github.com/twitter/twemproxy/archive/v0.4.1.tar.gz"
sha256 "00c2940f91947bea9457a348316aac1aa1d4e757238aafbefc9d51057da8ede0"
head "https://github.com/twitter/twemproxy.git"
bottle do
cellar :any_skip_relocation
sha256 "1f3714c4459185e9002ea87f4fc4a4de429f028df957615ee9876c61a7c89a6d" => :el_capitan
sha256 "73698710fa026b8585665a9b730626df444dabe6acf118cc4f0c2f57c27e214c" => :yosemite
sha256 "8e66691c40fe71934bb5eab848c61ef07f8f427774e253c0065eb64cc5410f9b" => :mavericks
end
depends_on "automake" => :build
depends_on "autoconf" => :build
depends_on "libtool" => :build
def install
system "autoreconf", "-ivf"
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "install"
pkgshare.install "conf", "notes", "scripts"
end
test do
assert_match version.to_s, shell_output("#{sbin}/nutcracker -V 2>&1")
end
end