aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/phantomjs.rb
blob: 2378c7b926e827db919d165a6c019c9cd593befa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class Phantomjs < Formula
  homepage 'http://www.phantomjs.org/'
  url 'http://phantomjs.googlecode.com/files/phantomjs-1.9.1-macosx.zip'
  sha1 '9c165cd1eb79fcb535a315ae096da4c0f0f8f6a2'

  depends_on :macos => :snow_leopard

  def install
    bin.install 'bin/phantomjs'
    (share+'phantomjs').install 'examples'
  end
end