diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/casperjs.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/casperjs.rb b/Library/Formula/casperjs.rb new file mode 100644 index 000000000..7770d14a2 --- /dev/null +++ b/Library/Formula/casperjs.rb @@ -0,0 +1,16 @@ +require 'formula' + +class Casperjs < Formula + homepage 'http://www.casperjs.org/' + url "https://github.com/n1k0/casperjs/tarball/0.6.10" + sha1 'eb8155970117fa0748266e7b188030b15d67dcab' + + head 'https://github.com/n1k0/casperjs.git' + + depends_on 'phantomjs' + + def install + libexec.install Dir['*'] + bin.install_symlink libexec+'bin/casperjs' + end +end |
