require "formula" class Syncthing < Formula homepage "http://syncthing.net" url "https://github.com/syncthing/syncthing.git", :tag => "v0.10.8" bottle do sha1 "33e55e2a4014447b368c92614748175bd963d95c" => :yosemite sha1 "15bd5a1f7b197d6b9f22e0f937a3213aabc34c95" => :mavericks sha1 "0e44ccd8fc08db1a3994d61a344744864a7483dd" => :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 EnvironmentVariables STNORESTART yes KeepAlive Label #{plist_name} ProgramArguments #{opt_bin}/syncthing -no-browser RunAtLoad EOS end test do system "#{bin}/syncthing", "-generate", "./" end end