From e487e3dfa6becdd544188522560e49ce714cb8e4 Mon Sep 17 00:00:00 2001 From: Robert Gieseke Date: Sun, 25 Sep 2011 12:43:13 +0200 Subject: [PATCH] phantomjs 1.3 Signed-off-by: Adam Vandenberg --- Formula/phantomjs.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Formula/phantomjs.rb b/Formula/phantomjs.rb index 5d0d0bd194..3da35cf80c 100644 --- a/Formula/phantomjs.rb +++ b/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