class Pulse < Formula homepage "https://ind.ie/pulse/" url "https://source.ind.ie/project/pulse.git", :tag => "0.1.4" head "https://source.ind.ie/project/pulse.git" bottle do sha1 "4d6954c4467e73a6fc341b6321fd063a3ed96b4d" => :yosemite sha1 "afe5f7172c2d83529c9c922ef173b6fc85f59456" => :mavericks sha1 "e2a0f268ad9a5fe754a7c9f1afa9b0a36603b9dd" => :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" # FIXTHIS: do this without mutating the cache! hack_dir = cached_download/".gopath/src/source.ind.ie/project/" rm_rf hack_dir mkdir_p hack_dir ln_s cached_download, "#{hack_dir}/pulse" ENV["GIT_DIR"] = cached_download/".git" system "./build.sh", "noupgrade" prefix.install %w{ CONTRIBUTING.md LICENSE README.md } bin.install "pulse" end def plist; <<-EOS.undent EnvironmentVariables STNORESTART yes KeepAlive Label #{plist_name} ProgramArguments #{opt_bin}/pulse -no-browser RunAtLoad EOS end test do system "#{bin}/pulse", "-generate", "./" end end