require "formula" class Syncthing < Formula homepage "http://syncthing.net" url "https://github.com/syncthing/syncthing.git", :tag => "v0.10.12" bottle do sha1 "a98be854eb18c0ea59b6fdbc245682c1a5a45dc5" => :yosemite sha1 "80164b9027518d4976c498dc5f4a6732b6fbe034" => :mavericks sha1 "ff092a3db1058eee471b95137bd895fc92e0098d" => :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" # FIXME 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 EOS end test do system "#{bin}/syncthing", "-generate", "./" end end