diff options
| author | Dominyk Tiller | 2014-11-23 03:05:07 +0000 |
|---|---|---|
| committer | Mike McQuaid | 2014-11-23 10:58:55 +0000 |
| commit | d62ead971137f16753176dec7f791e9b540b80c0 (patch) | |
| tree | b1441ab8f82fec2bf31df90fdfbead098cf6c818 /Library/Formula | |
| parent | ac561222990b3099a3d6cba59cac8b803d2d36e4 (diff) | |
| download | homebrew-d62ead971137f16753176dec7f791e9b540b80c0.tar.bz2 | |
pulse 0.1.1 (new formula)
New formula for Pulse.
Closes #34393.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/pulse.rb | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/Library/Formula/pulse.rb b/Library/Formula/pulse.rb new file mode 100644 index 000000000..8be9e0b10 --- /dev/null +++ b/Library/Formula/pulse.rb @@ -0,0 +1,55 @@ +require "formula" + +class Pulse < Formula + homepage "https://ind.ie/pulse/" + url "https://source.ind.ie/project/pulse.git", :tag => "0.1.1" + head "https://source.ind.ie/project/pulse.git" + + 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/source.ind.ie/project/" + rm_rf hack_dir + mkdir_p hack_dir + ln_s cached_download, "#{hack_dir}/pulse" + ln_s cached_download/".git", ".git" + + system "./build.sh", "noupgrade" + prefix.install %w{ CONTRIBUTING.md CONTRIBUTORS LICENSE README.md } + bin.install "pulse" + end + + def plist; <<-EOS.undent + <?xml version="1.0" encoding="UTF-8"?> + <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> + <plist version="1.0"> + <dict> + <key>EnvironmentVariables</key> + <dict> + <key>STNORESTART</key> + <string>yes</string> + </dict> + <key>KeepAlive</key> + <true/> + <key>Label</key> + <string>#{plist_name}</string> + <key>ProgramArguments</key> + <array> + <string>#{opt_bin}/pulse</string> + <string>-no-browser</string> + </array> + <key>RunAtLoad</key> + <true/> + </dict> + </plist> + EOS + end + + test do + system "#{bin}/pulse", "-generate", "./" + end +end |
