aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/casperjs.rb
blob: 550a59c72337c31ba003491027640e27eb459386 (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-RC3'
  sha1 '617432dc3d50b0e3e544c642361f87b87dd1743b'
  version '1.0.0-RC3'

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

  depends_on 'phantomjs'

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