2013-12-02 05:17:12 +00:00
|
|
|
require "formula"
|
|
|
|
|
|
|
|
class Nsq < Formula
|
|
|
|
homepage "http://bitly.github.io/nsq"
|
2014-07-25 12:34:32 +00:00
|
|
|
url "https://github.com/bitly/nsq/archive/v0.2.29.tar.gz"
|
|
|
|
sha1 "f8574d984e92f60248e7ec13f05390182b4906c5"
|
2013-12-02 05:17:12 +00:00
|
|
|
|
2014-07-25 13:50:20 +00:00
|
|
|
bottle do
|
|
|
|
sha1 "4107d91e72e694e26b9a533983c4e4aa25c549a0" => :mavericks
|
|
|
|
sha1 "3dd13b928a7cce6419b4afb2d5bb82681de55cb0" => :mountain_lion
|
|
|
|
sha1 "65e97e27186fd5c8f5b5b05a39b5de3b8a27a792" => :lion
|
|
|
|
end
|
|
|
|
|
2013-12-02 05:17:12 +00:00
|
|
|
depends_on "go" => :build
|
|
|
|
depends_on :hg # some package dependencies are mercurial repos
|
|
|
|
|
|
|
|
resource "godep" do
|
|
|
|
url "http://bitly-downloads.s3.amazonaws.com/nsq/godep.tar.gz"
|
|
|
|
sha1 "396a62055bb5b4eb4f58cffc64b2ac8deafbacac"
|
|
|
|
end
|
|
|
|
|
|
|
|
def install
|
2014-02-17 16:24:17 +00:00
|
|
|
# build a proper GOPATH tree for local dependencies
|
2014-07-25 12:34:32 +00:00
|
|
|
(buildpath + "src/github.com/bitly/nsq").install "util", "nsqlookupd", "nsqd"
|
2014-02-17 16:24:17 +00:00
|
|
|
(buildpath + "src/github.com/bitly/nsq/nsqadmin").install "nsqadmin/templates" => "templates"
|
2013-12-02 05:17:12 +00:00
|
|
|
|
|
|
|
# godep is only needed to *build* so don't install somewhere permanent
|
|
|
|
buildpath.install resource("godep")
|
|
|
|
|
|
|
|
ENV["GOPATH"] = `#{buildpath}/godep path`.strip
|
|
|
|
ENV.append_path "GOPATH", buildpath
|
|
|
|
system "make"
|
|
|
|
system "make", "DESTDIR=#{prefix}", "PREFIX=", "install"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
system "#{bin}/nsqd", "--version"
|
|
|
|
end
|
|
|
|
end
|