a19b17efc2
Also, use tarball instead of zipball. Closes Homebrew/homebrew#18472.
16 lines
361 B
Ruby
16 lines
361 B
Ruby
require 'formula'
|
|
|
|
class Casperjs < Formula
|
|
homepage 'http://www.casperjs.org/'
|
|
url 'https://github.com/n1k0/casperjs/tarball/1.0.2'
|
|
sha1 '292fd7bc406f1a509b05781b3eccb21008517984'
|
|
|
|
head 'https://github.com/n1k0/casperjs.git'
|
|
|
|
depends_on 'phantomjs'
|
|
|
|
def install
|
|
libexec.install Dir['*']
|
|
bin.install_symlink libexec+'bin/casperjs'
|
|
end
|
|
end
|