require "formula" class Syncthing < Formula homepage "http://syncthing.net" url "https://github.com/calmh/syncthing.git", :tag => "v0.9.17" bottle do sha1 "940efca60fa03ef1a4905cba06cb20c0f128e663" => :mavericks sha1 "bfd1913a54b4c3cc63fec0c13bd03888d5bf2d72" => :mountain_lion sha1 "0d7c3a475c175acb132108341fee751a600cfdd2" => :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