require "formula" class Syncthing < Formula homepage "http://syncthing.net" url "https://github.com/calmh/syncthing.git", :tag => "v0.9.10" bottle do sha1 "82757752a5c13ced8497a14951bed755577635bf" => :mavericks sha1 "ec78a5d9c70a1fcc4b4f43512eaacbb2b74aac8f" => :mountain_lion sha1 "d4df1aaa2f37a73aec10c26f69f5f9d467a86ba3" => :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