7e64e71e68
Closes Homebrew/homebrew#15654. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
17 lines
387 B
Ruby
17 lines
387 B
Ruby
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
|