diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/sync_gateway.rb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Library/Formula/sync_gateway.rb b/Library/Formula/sync_gateway.rb new file mode 100644 index 000000000..3ea08ad59 --- /dev/null +++ b/Library/Formula/sync_gateway.rb @@ -0,0 +1,22 @@ +require "formula" + +class SyncGateway < Formula + homepage "http://docs.couchbase.com/sync-gateway" + head "https://github.com/couchbase/sync_gateway.git", :branch => "master" + url "https://github.com/couchbase/sync_gateway.git", :branch => "release/1.0.2" + version "1.0.2" + + depends_on "go" => :build + + def install + system "make", "buildit" + bin.install "bin/sync_gateway" + end + + test do + pid = fork { exec "#{bin}/sync_gateway" } + sleep 1 + Process.kill("SIGINT", pid) + Process.wait(pid) + end +end |
