aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/phantomjs.rb
diff options
context:
space:
mode:
authorCharlie Sharpsteen2011-09-25 10:28:58 -0700
committerCharlie Sharpsteen2011-09-25 10:28:58 -0700
commit692ff26040ce2c829dad10fc1d0b3bc4e687cf5f (patch)
treee62e7d6f60d1ddca54c74454f66f1da36e57579a /Library/Formula/phantomjs.rb
parentc82b738ff9186e0109f7c1212bd6b8ff87b98faf (diff)
parent513c0f82c6867692cf28e233f73c693ec4e2f14e (diff)
downloadhomebrew-692ff26040ce2c829dad10fc1d0b3bc4e687cf5f.tar.bz2
Merge branch 'master' of http://github.com/mxcl/homebrew
Diffstat (limited to 'Library/Formula/phantomjs.rb')
-rw-r--r--Library/Formula/phantomjs.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/phantomjs.rb b/Library/Formula/phantomjs.rb
index 5d0d0bd19..3da35cf80 100644
--- a/Library/Formula/phantomjs.rb
+++ b/Library/Formula/phantomjs.rb
@@ -1,16 +1,16 @@
require 'formula'
class Phantomjs < Formula
- url "http://phantomjs.googlecode.com/files/phantomjs-1.2.0-source.zip"
+ url "https://phantomjs.googlecode.com/files/phantomjs-1.3.0-source.tar.gz"
head "https://github.com/ariya/phantomjs.git"
homepage 'http://www.phantomjs.org/'
- sha1 "0b8b20fbc45013ecf61dd988390dd979a894dec1"
+ sha1 "76902ad0956cf212cc9bb845f290690f53eca576"
depends_on 'qt'
def install
system "qmake -spec macx-g++"
system "make"
- bin.install "bin/phantomjs.app/Contents/MacOS/phantomjs"
+ bin.install "bin/phantomjs"
end
end