homebrew-core/Formula/casperjs.rb
Eduard Baun 3227e8506c casperjs 1.0.2
Closes Homebrew/homebrew#18173.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-03-02 22:57:14 -06:00

16 lines
361 B
Ruby

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