homebrew-core/Formula/phantomjs.rb

17 lines
404 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Phantomjs < Formula
url 'http://phantomjs.googlecode.com/files/phantomjs-1.0.0.tar.gz'
head "git://github.com/ariya/phantomjs.git"
homepage 'http://phantomjs.googlecode.com/'
md5 '6aa18de82e24923fa1a1feeaf299ecef'
depends_on 'qt'
def install
system "qmake -spec macx-g++"
system "make"
bin.install "bin/phantomjs.app/Contents/MacOS/phantomjs"
end
end