diff options
| author | Matt Reiferson | 2014-02-17 11:24:17 -0500 |
|---|---|---|
| committer | Mike McQuaid | 2014-02-17 17:19:15 +0000 |
| commit | 7209af6ef5797c17263d36def609e31ec22c87ec (patch) | |
| tree | 51144b5a81d956d70ebc113f529a47d792281d48 /Library | |
| parent | 653ff4f947c7652360069c1bcb802be8777609a2 (diff) | |
| download | homebrew-7209af6ef5797c17263d36def609e31ec22c87ec.tar.bz2 | |
nsq 0.2.27
Closes #26787.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/nsq.rb | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Library/Formula/nsq.rb b/Library/Formula/nsq.rb index cf9a44210..45da80516 100644 --- a/Library/Formula/nsq.rb +++ b/Library/Formula/nsq.rb @@ -2,8 +2,8 @@ require "formula" class Nsq < Formula homepage "http://bitly.github.io/nsq" - url "https://github.com/bitly/nsq/archive/v0.2.24.tar.gz" - sha1 "9f1dbaffd8c0a49715555b722df745d228bbb868" + url "https://github.com/bitly/nsq/archive/v0.2.27.tar.gz" + sha1 "3d8a1d28d76e3ea8e788192b0e9a39800b112791" depends_on "go" => :build depends_on :hg # some package dependencies are mercurial repos @@ -14,7 +14,9 @@ class Nsq < Formula end def install - (buildpath + "src/github.com/bitly/nsq").install "util" + # build a proper GOPATH tree for local dependencies + (buildpath + "src/github.com/bitly/nsq").install "util", "nsqlookupd" + (buildpath + "src/github.com/bitly/nsq/nsqadmin").install "nsqadmin/templates" => "templates" # godep is only needed to *build* so don't install somewhere permanent buildpath.install resource("godep") |
