require "formula" class Syncthing < Formula homepage "http://syncthing.net" url "https://github.com/calmh/syncthing.git", :tag => "v0.9.10" bottle do sha1 "17052e29c6d573f22390de9326a54b7939b84ed2" => :mavericks sha1 "1b11607bc47d0880ba993ffe10d52ef1663ae3a0" => :mountain_lion sha1 "83e4df0d1b04986218acafecb4e408a2e879662d" => :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 KeepAlive Label #{plist_name} ProgramArguments #{opt_bin}/syncthing -no-browser RunAtLoad EOS end test do system "#{bin}/syncthing", "-generate", "./" end end