aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/slimerjs.rb
blob: afbd25f11eb34e9eb42f85ef6605d67291debc3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
require 'formula'

class Slimerjs < Formula
  homepage 'http://www.slimerjs.org'
  url 'http://download.slimerjs.org/v0.8/slimerjs-0.8.4.zip'
  sha1 '89c7dc05b9df5f2aac0d423fb5a2118271ac9ad2'

  head 'https://github.com/laurentj/slimerjs.git'

  def install
    if build.head?
      cd 'src/'
      system 'zip -r omni.ja chrome/ components/ modules/ defaults/ chrome.manifest -x@package_exclude.lst'
    end
    libexec.install 'slimerjs.py' if build.head?
    libexec.install %w[application.ini omni.ja slimerjs]
    bin.install_symlink libexec/'slimerjs'
  end

  def caveats; <<-EOS.undent
    You should set the environment variable SLIMERJSLAUNCHER to a installation of Mozilla Firefox (or XULRunner).
    For a standard Mozilla Firefox installation this would be:
      export SLIMERJSLAUNCHER=/Applications/Firefox.app/Contents/MacOS/firefox
    EOS
  end
end