class Syncthing < Formula homepage "http://syncthing.net" url "https://github.com/syncthing/syncthing.git", :tag => "v0.10.24" bottle do sha1 "7010ff80ae2a4309e5898e04c4e0ad78af68baff" => :yosemite sha1 "083620fc00fdd6a25c9a077944e0d6237c4a6447" => :mavericks sha1 "b20683d021ef06c0860afbe6533db54c4ae1b2d3" => :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" # FIXTHIS: do this without mutating the cache! hack_dir = cached_download/".gopath/src/github.com/syncthing" rm_rf hack_dir mkdir_p hack_dir ln_s cached_download, "#{hack_dir}/syncthing" system "./build.sh", "noupgrade" bin.install "syncthing" end def plist; <<-EOS.undent KeepAlive Label #{plist_name} ProgramArguments #{opt_bin}/syncthing -no-browser -no-restart RunAtLoad ProcessType Background EOS end test do system bin/"syncthing", "-generate", "./" end end