homebrew-core/Formula/syncthing.rb
BrewTestBot 3da0f7fc90 syncthing: update 0.10.4 bottle.
Closes Homebrew/homebrew#33632.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-10-27 15:13:35 +00:00

59 lines
1.5 KiB
Ruby

require "formula"
class Syncthing < Formula
homepage "http://syncthing.net"
url "https://github.com/syncthing/syncthing.git", :tag => "v0.10.4"
bottle do
sha1 "fd52fc0ccd1bf8708a1cda9b419d930ec8e0c56e" => :yosemite
sha1 "c47d3c2d9de42e89b4fe473846e6787b6da7c076" => :mavericks
sha1 "f5d889227e9af3f0530ba77981135ab7f4eb310b" => :mountain_lion
end
depends_on "go" => :build
depends_on :hg => :build
def install
ENV["GOPATH"] = cached_download/".gopath"
ENV.append_path "PATH", "#{ENV["GOPATH"]}/bin"
hack_dir = cached_download/".gopath/src/github.com/syncthing"
rm_rf hack_dir
mkdir_p hack_dir
ln_s cached_download, "#{hack_dir}/syncthing"
ln_s cached_download/".git", ".git"
system "./build.sh", "noupgrade"
bin.install "syncthing"
end
def plist; <<-EOS.undent
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>EnvironmentVariables</key>
<dict>
<key>STNORESTART</key>
<string>yes</string>
</dict>
<key>KeepAlive</key>
<true/>
<key>Label</key>
<string>#{plist_name}</string>
<key>ProgramArguments</key>
<array>
<string>#{opt_bin}/syncthing</string>
<string>-no-browser</string>
</array>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
EOS
end
test do
system "#{bin}/syncthing", "-generate", "./"
end
end