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