blob: 5d0d0bd1942942793d2e6a6e99bab0f0c9227f31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class Phantomjs < Formula
url "http://phantomjs.googlecode.com/files/phantomjs-1.2.0-source.zip"
head "https://github.com/ariya/phantomjs.git"
homepage 'http://www.phantomjs.org/'
sha1 "0b8b20fbc45013ecf61dd988390dd979a894dec1"
depends_on 'qt'
def install
system "qmake -spec macx-g++"
system "make"
bin.install "bin/phantomjs.app/Contents/MacOS/phantomjs"
end
end
|