blob: e69d81c02e107070a49aefe04d56e150fc87b3f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
require 'formula'
class SnowLeopardOrNewer < Requirement
satisfy MacOS.version >= :snow_leopard
def message
"PhantomJS requires Mac OS X 10.6 (Snow Leopard) or newer."
end
end
class Phantomjs < Formula
homepage 'http://www.phantomjs.org/'
url 'http://phantomjs.googlecode.com/files/phantomjs-1.8.1-macosx.zip'
sha1 '69206ce980703e54160628614a6917d8ec19c281'
depends_on SnowLeopardOrNewer.new
def install
bin.install 'bin/phantomjs'
end
end
|