homebrew-core/Formula/casperjs.rb

18 lines
387 B
Ruby

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