homebrew-core/Formula/casperjs.rb
Andrew de Andrade d4361e6445 casperjs 1.0.0-RC1
Closes Homebrew/homebrew#13296.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-07-10 22:41:26 -07:00

16 lines
365 B
Ruby

require 'formula'
class Casperjs < Formula
homepage 'http://www.casperjs.org/'
url 'https://github.com/n1k0/casperjs/tarball/1.0.0-RC1'
sha1 '3f08685bf41044a200b78110f5c2062ce1bb918c'
head 'https://github.com/n1k0/casperjs.git'
depends_on 'phantomjs'
def install
libexec.install Dir['*']
bin.install_symlink libexec+'bin/casperjs'
end
end