class Syncthing < Formula homepage "http://syncthing.net" url "https://github.com/syncthing/syncthing.git", :tag => "v0.10.18" bottle do sha1 "c734cf769c576ea6a4d6dbcce43543633386f15f" => :yosemite sha1 "a5c3f2f2882c81acd87636a6301d17de926d47a1" => :mavericks sha1 "7a4dee0d17a1f5df6acb013c8f0d51d28160a415" => :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" ENV["GIT_DIR"] = cached_download/".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 ProcessType Background EOS end test do system "#{bin}/syncthing", "-generate", "./" end end