aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/casperjs.rb
blob: be6c3824908a43fd11df5aa576ccbb9dcf195394 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'formula'

class Casperjs < Formula
  homepage 'http://www.casperjs.org/'
  url 'https://github.com/n1k0/casperjs/zipball/1.0.0-RC2'
  sha1 'b3c336a98a3d3b5e3640ec6c44d93bdbf0974f89'
  version '1.0.0-RC2'

  head 'https://github.com/n1k0/casperjs.git'

  depends_on 'phantomjs'

  def install
    libexec.install Dir['*']
    bin.install_symlink libexec+'bin/casperjs'
  end
end